-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
56 lines (56 loc) · 1.97 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": "awaiting",
"version": "3.0.0",
"engines": {
"node": ">=7.6.x"
},
"keywords": [
"async",
"await",
"promise",
"utility",
"promises",
"bluebird",
"flow",
"control flow",
"es6",
"promisify",
"thenable",
"async function",
"next",
"waterfall",
"throttle"
],
"repository": "hunterloftis/awaiting",
"bugs": "https://github.com/hunterloftis/awaiting/issues",
"scripts": {
"lint": "standard --fix 'lib/**/*.js'",
"test": "yarn lint && yarn test:node",
"rollup:node": "rollup lib/awaiting.js --format cjs --output dist/awaiting.common.js",
"rollup:browser": "rollup lib/awaiting.js --format umd --name 'awaiting' --output dist/awaiting.umd.js",
"rollup": "yarn rollup:node && yarn rollup:browser",
"test:node": "yarn rollup:node && nyc --check-coverage --lines 100 --functions 100 --branches 100 mocha --bail test/*.test.js test/node/*.test.js",
"test:browser": "browserify test/*.test.js -o test/browser/test.js && open test/browser/index.html",
"coverage:report": "nyc --reporter html mocha --bail test/*.test.js test/node/*.test.js && open coverage/index.html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"safe": "git diff-index --quiet master --",
"build": "yarn install && yarn test && yarn rollup",
"release": "yarn safe && yarn version && npm publish --registry 'https://registry.npmjs.org/'",
"docs:build": "documentation build -f html -g -o docs && cp dist/awaiting.umd.js examples && cp -r examples docs",
"docs:release": "yarn safe && git subtree push --prefix docs origin gh-pages"
},
"main": "dist/awaiting.common.js",
"module": "dist/awaiting.es.js",
"license": "MIT",
"devDependencies": {
"browserify": "^14.3.0",
"chai": "^3.5.0",
"coveralls": "^2.13.0",
"documentation": "^4.0.0-beta.18",
"markdown-to-html": "^0.0.13",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rollup": "^0.41.6",
"standard": "^8.6.0"
}
}