forked from evilsoft/crocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "crocks",
"version": "0.4.0",
"description": "A collection of well known Monadic Containers for your utter enjoyment.",
"main": "crocks.js",
"scripts": {
"preversion": "npm run build",
"build:publish": "npm test && npm run build && npm publish",
"build": "npm test && webpack && uglifyjs dist/crocks.js -c \"warnings=false\" -m -o dist/crocks.min.js",
"lint": "jshint .",
"lint:dev": "jshint --reporter=node_modules/jshint-stylish .",
"spec": "tape combinators/*.spec.js crocks/*.spec.js helpers/*.spec.js internal/*.spec.js logic/*.spec.js monoids/*.spec.js pointfree/*.spec.js ./predicates/*.spec.js ./transforms/*.spec.js ./*.spec.js",
"spec:dev": "nodemon -q -e js -x 'npm run spec -s | tap-spec'",
"test": "npm run lint && nyc npm run spec",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilsoft/crocks.git"
},
"keywords": [
"FP",
"Functional",
"Monadic",
"Monads",
"fantasy",
"Applicative",
"Functor"
],
"author": "Ian Hofmann-Hicks <evilsoft@aol.com> (evil)",
"license": "ISC",
"bugs": {
"url": "https://github.com/evilsoft/crocks/issues"
},
"homepage": "https://github.com/evilsoft/crocks#readme",
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"dist/",
"test/",
"**/*.spec.js"
]
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"coveralls": "^2.11.15",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"nodemon": "^1.9.2",
"nyc": "^10.1.2",
"sinon": "^1.17.4",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"uglify-js": "^2.7.0",
"webpack": "^1.13.1"
}
}