forked from Audentio/deployrjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"name": "deployrjs",
"version": "0.0.34",
"description": "Automatic deployment with git",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "babel src/index.js --out-file dist/index.js",
"dev": "babel src/index.js --watch --out-file dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Audentio/deployrjs.git"
},
"author": "Audentio Design, LLC",
"bugs": {
"url": "https://github.com/Audentio/deployrjs/issues"
},
"homepage": "https://github.com/Audentio/deployrjs#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"json-loader": "^0.5.4"
},
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"child-process-promise": "^2.1.3",
"crypto": "0.0.3",
"express": "^4.14.0",
"node-fetch": "^1.6.3"
}
}