-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
56 lines (56 loc) · 1.7 KB
/
package.json
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
{
"name": "creed",
"version": "1.4.0",
"description": "Sophisticated and functionally-minded async with advanced features: coroutines, promises, ES2015 iterables, fantasy-land",
"main": "dist/creed.js",
"module": "dist/creed.es.js",
"jsnext:main": "dist/creed.es.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/briancavalier/creed.git"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"promise",
"promises",
"promises/a+",
"promises-aplus",
"future",
"fantasyland",
"monad",
"applicative",
"async"
],
"scripts": {
"build": "npm run build:dist && npm run build:min",
"build:dist": "rollup -c",
"build:min": "uglifyjs -c \"warnings=false\" -m -o dist/creed.min.js -- dist/creed.js",
"preversion": "npm run build",
"test": "npm run test:lint && npm run test:unit && npm run test:aplus",
"test:lint": "jsinspect src && standard --fix {src,test}/*.js",
"test:unit": "nyc --check-coverage --statements 100 --branches 89 --lines 100 --functions 100 mocha",
"test:aplus": "promises-aplus-tests test/aplus.js --reporter dot",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"buba": "^4.0.1",
"buble": "^0.18.0",
"coveralls": "^3.0.0",
"fantasy-land": "^3.1.0",
"jsinspect": "^0.12.3",
"mocha": "^5.0.0",
"nyc": "^11.0.2",
"promises-aplus-tests": "^2.1.1",
"rollup": "^0.55.3",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^10.0.3",
"uglify-js": "^3.0.18"
}
}