-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 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
40
{
"name": "enmapi",
"version": "1.1.14",
"description": "declarative api",
"main": "index.js",
"keywords": [
"api",
"node",
"express",
"mongo"
],
"author": "Ryan Lowe <ryan.phytertek@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/phytertek/enmapi"
},
"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": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-device": "^0.4.2",
"helmet": "^3.9.0",
"mongoose": "^4.12.1",
"morgan": "^1.9.0",
"validator": "^9.1.2",
"winston": "^2.4.0"
}
}