-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "startandstop",
"version": "1.0.0",
"description": "Safely perform sync and async steps when starting and stopping servers",
"main": "dist/startandstop.js",
"module": "dist/startandstop.es.js",
"scripts": {
"build": "rimraf dist && npm run build:cjs && npm run build:es",
"build:watch": "rimraf dist && rollup --watch -c -o dist/startandstop.js -f cjs",
"build:cjs": "rollup -c -o dist/startandstop.js -f cjs",
"build:es": "rollup -c -o dist/startandstop.es.js -f es",
"test": "npm run lint && npm run flow && npm run test:unit | faucet",
"test:unit": "tape test/**.spec.js",
"test:unit:watch": "nodemon -w test -w dist/startandstop.js -d 1 -x npm run test:unit",
"lint": "eslint src test",
"flow": "flow check"
},
"keywords": [
"start",
"stop",
"boot",
"shutdown",
"sequence",
"async",
"sync",
"initialize",
"initialization",
"steps"
],
"author": "Matthias Götzke",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"faucet": "^0.0.1",
"flow-bin": "^0.38.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"rollup-plugin-flow": "^1.1.1",
"rollup-watch": "^3.2.2",
"tape": "^4.6.3"
}
}