-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "flow-watch",
"version": "2.0.0",
"description": "clear the console and run flow on file changes",
"main": "./index.js",
"bin": {
"flow-watch": "./index.js"
},
"scripts": {
"lint": "eslint *.js test",
"lint:fix": "eslint --fix *.js test",
"flow:watch": "node ./index.js",
"test": "mocha",
"test:watch": "mocha --watch",
"prepublishOnly": "npm run lint && npm test",
"postpublish": "git tag -a v$npm_package_version -m v$npm_package_version && git push origin v$npm_package_version"
},
"keywords": [
"flow",
"watch"
],
"author": "Andy Edwards",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^3.7.0",
"flow-bin": "^0.41.0",
"mocha": "^6.2.2"
},
"dependencies": {
"cross-spawn": "^6.0.3",
"nodemon": "^2.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedwards1211/flow-watch.git"
},
"bugs": {
"url": "https://github.com/jedwards1211/flow-watch/issues"
},
"homepage": "https://github.com/jedwards1211/flow-watch#readme"
}