-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "babel-watch",
"version": "7.8.1",
"description": "Reload your babel-node app on JS source file changes. And do it *fast*.",
"main": "babel-watch.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "flow && eslint && yarn fmt:check",
"flow": "flow",
"fmt": "prettier --write ./**.{json,js,yml,md}",
"fmt:check": "prettier --check ./**.{json,js,yml,md}"
},
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmagiera/babel-watch.git"
},
"files": [
"babel-watch.js",
"runner.js"
],
"keywords": [
"babel",
"nodemon",
"babel-node",
"watch"
],
"author": {
"email": "[email protected]",
"name": "Krzysztof Magiera"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/kmagiera/babel-watch/issues"
},
"homepage": "https://github.com/kmagiera/babel-watch#readme",
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"commander": "^6.2.0",
"debug": "^4.3.1",
"lodash.debounce": "^4.0.8",
"lodash.isregexp": "^4.0.1",
"lodash.isstring": "^4.0.1",
"signal-exit": "^4.0.2",
"source-map-support": "^0.5.19",
"string-argv": "^0.3.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"bin": {
"babel-watch": "./babel-watch.js"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"eslint": "^8.43.0",
"flow-bin": "^0.141.0",
"prettier": "^2.8.8"
}
}