-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.16 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.16 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
{
"name": "create-enmapi-app",
"version": "2.0.0",
"homepage": "https://github.com/phytertek/create-enmapi-app#readme",
"repository": "https://github.com/phytertek/create-enmapi-app.git",
"bugs": {
"url": "https://github.com/phytertek/create-enmapi-app/issues"
},
"author": "Ryan Lowe <ryan.phytertek@gmail.com>",
"license": "MIT",
"bin": {
"create-enmapi-app": "bin/index.js"
},
"scripts": {
"patch": "npm run git:patch && npm run github:push",
"git:patch": "git add . && git commit -m 'publish patch' && npm run patch:publish",
"patch:publish": "npm version patch && npm publish",
"minor": "npm run git:minor && npm run github:push",
"git:minor": "git add . && git commit -m 'publish minor' && npm run minor:publish",
"minor:publish": "npm version minor && npm publish",
"major": "npm run git:major && npm run github:push",
"git:major": "git add . && git commit -m 'publish major' && npm run major:publish",
"major:publish": "npm version major && npm publish",
"github:push": "git push origin master"
},
"dependencies": {
"axios": "^0.18.0",
"cli-spinner": "^0.2.7",
"js-beautify": "^1.7.5"
}
}