-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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": "@johnwatkins0/node-autodeploy",
"version": "1.0.25",
"description": "Deploy a project to a remote server when it's pushed to GitHub. ",
"bin": {
"autodeploy": "."
},
"scripts": {
"build": "babel src --out-dir dist --ignore __tests__",
"prepare": "npm run build",
"start": "babel src --out-dir dist --watch --ignore __tests__",
"lint": "eslint src/",
"test": "yarn lint && jest"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnwatkins0/node-autodeploy.git"
},
"author": "John Watkins",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnwatkins0/node-autodeploy/issues"
},
"homepage": "https://github.com/johnwatkins0/node-autodeploy#readme",
"dependencies": {
"git-branch": "^2.0.1",
"prompt": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-node6": "^11.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^21.15.1",
"husky": "^1.0.0-rc.2",
"intercept-stdout": "^0.1.2",
"jest": "^22.4.3"
}
}