-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "microservice-lite",
"version": "1.0.1",
"description": "A lite framework for getting started with microservices",
"main": "index.js",
"bin": {
"mslite": "./bin/mslite.js"
},
"scripts": {
"test": "standard && mocha \"src/**/*.spec.js\" \"index.spec.js\" ",
"commitmsg": "validate-commit-msg",
"prepush": "standard --fix",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/Robophil/microservice-lite.git"
},
"keywords": [
"microservices",
"cote.js",
"cote",
"javascript",
"node",
"microservicelite",
"ms-lite"
],
"standard": {
"ignore": [
"bin/mslite.js"
]
},
"release": {
"branch": "develop"
},
"preferGlobal": true,
"author": "Balogun Oghenerobo Philip <oghenerobo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Robophil/microservice-lite/issues"
},
"homepage": "https://github.com/Robophil/microservice-lite#readme",
"devDependencies": {
"husky": "^0.14.3",
"mocha": "^3.5.2",
"standard": "^10.0.3",
"validate-commit-msg": "^2.14.0",
"semantic-release": "^8.2.0"
},
"dependencies": {
"blob": "^0.0.4",
"commander": "^2.11.0",
"dotenv": "^4.0.0",
"fs-extra": "^4.0.2",
"replace-in-file": "^3.0.0-beta.2",
"require-all": "^2.2.0",
"sails-disk": "^0.10.10",
"waterline": "^0.11.11"
}
}