-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "angelabilities-exec",
"version": "1.0.1",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"jest": "^23.6.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"author": "Boris Filipov",
"license": "MIT",
"description": "Handy common code for angel to execute shell commands",
"scripts": {
"test": "jest",
"release-patch": "npm version patch && npm publish",
"release-minor": "npm version minor && npm publish",
"release-major": "npm version major && npm publish",
"preversion": "npm run test",
"postversion": "git push --tags && git push origin master"
},
"repository": {
"type": "git",
"url": "https://github.com/node-organic/angelabilities-exec.git"
},
"bugs": {
"url": "https://github.com/node-organic/angelabilities-exec/issues"
},
"homepage": "https://github.com/node-organic/angelabilities-exec"
}