-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
75 lines (75 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "generator-sails-rest-api",
"version": "0.0.0-development",
"description": "Yeoman generator that provides already configured and optimized Sails REST API with bundle of predefined features",
"main": "generators/app/index.js",
"keywords": [
"yeoman-generator",
"sails",
"rest",
"api",
"boilerplate",
"scaffolder",
"scaffold",
"yeoman",
"generator"
],
"homepage": "https://github.com/ghaiklor/generator-sails-rest-api",
"bugs": {
"url": "https://github.com/ghaiklor/generator-sails-rest-api/issues",
"email": "ghaiklor@gmail.com"
},
"license": "MIT",
"author": {
"name": "Eugene Obrezkov",
"email": "ghaiklor@gmail.com",
"url": "http://ghaiklor.com/"
},
"contributors": [
{
"name": "Dmitriy Akulich",
"url": "https://github.com/IncoCode"
}
],
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "istanbul cover _mocha",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/generator-sails-rest-api.git"
},
"dependencies": {
"chalk": "3.0.0",
"print-message": "3.0.1",
"update-notifier": "2.6.0",
"yeoman-generator": "5.2.0",
"yosay": "2.0.2",
"snyk": "^1.338.0"
},
"devDependencies": {
"chai": "4.1.1",
"coveralls": "3.0.8",
"cz-conventional-changelog": "3.1.0",
"istanbul": "0.4.5",
"mocha": "7.0.1",
"semantic-release": "17.0.1",
"yeoman-assert": "3.1.1",
"yeoman-test": "2.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
},
"snyk": true
}