-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 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
43
44
45
46
47
48
49
50
{
"name": "@amazingandyyy/node-runner",
"description": "run the node file, run it again when any file is updated",
"version": "0.0.6",
"bin": {
"node-run": "index.js"
},
"author": {
"name": "Andy Chen",
"email": "[email protected]",
"url": "https://amazingandyyy.com/"
},
"scripts": {
"test": "standard --fix",
"precommit": "npm run test"
},
"lint-staged": {
"*.js": [
"npm run test",
"git add"
]
},
"markdeck": {
"url": "https://github.com/amazingandyyy/node-runner/tree/master/docs"
},
"bugs": {
"url": "https://github.com/amazingandyyy/node-runner/issues"
},
"homepage": "https://github.com/amazingandyyy/node-runner",
"keywords": [
"node",
"nodemon",
"node-watch"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/amazingandyyy/node-runner.git"
},
"devDependencies": {
"@amazingandyyy/git-hooks": "0.0.30",
"lint-staged": "^9.2.1",
"standard": "*"
},
"files": [
"index.js"
],
"dependencies": {}
}