-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "bluebird-chain",
"version": "0.2.0",
"description": "Chain utility for promises",
"main": "lib/bluebird-chain.js",
"jsnext:main": "src/bluebird-chain.js",
"files": [
"lib/bluebird-chain.js",
"lib/bluebird-chain.min.js",
"src"
],
"scripts": {
"test": "mocha",
"test:browser": "phantomjs ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js test/browser/index.html spec \"{\\\"useColors\\\": true}\"",
"test:legacy": "mocha --opts ./test/legacy.opts",
"autotest": "mocha --watch",
"babel": "babel src/bluebird-chain.js -o lib/bluebird-chain.js",
"minify": "uglifyjs lib/bluebird-chain.js -c -m -o lib/bluebird-chain.min.js",
"standard": "standard",
"prettier": "prettier-standard-formatter src test/*.js",
"header": "header src/*.js lib/*.js",
"build": "npm run header && npm run prettier && npm run standard && npm test && npm run babel && npm run minify && npm run header && npm run test:browser",
"cover": "nyc --require babel-core/register --all mocha",
"cover:report": "nyc report --reporter=text-lcov | coveralls",
"cover:open": "npm run cover && open coverage/lcov-report/src/index.js.html"
},
"nyc": {
"include": [
"src"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamonkko/bluebird-chain.git"
},
"keywords": [
"promise",
"bluebird",
"chain",
"flow",
"fp"
],
"author": "Jarkko Mönkkönen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamonkko/bluebird-chain/issues"
},
"homepage": "https://github.com/jamonkko/bluebird-chain#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.13.2",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-rename-umd-globals": "^1.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.6.0",
"bluebird": "^3.4.3",
"chai": "^4.0.1",
"coveralls": "^3.0.0",
"lodash": "^4.6.1",
"mocha": "^3.4.2",
"mocha-phantomjs-core": "^2.1.1",
"module-header": "github:jamonkko/module-header#replace-existing",
"nyc": "^11.0.1",
"phantomjs-prebuilt": "^2.1.7",
"ramda": "^0.25.0",
"standard": "^9.0.2",
"uglify-js": "^3.0.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/lib/*"
]
},
"dependencies": {
"babel-plugin-transform-object-assign": "^6.22.0",
"prettier": "^1.0.0",
"prettier-standard-formatter": "^0.222222222222222.333333333333333"
}
}