-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
134 lines (134 loc) · 3.78 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "node-api-seed",
"title": "Node Api Seed",
"version": "1.1.1",
"engines": {
"node": ">=8.1.2"
},
"deploymentDate": "2016-11-09T19:15:04.309Z",
"description": "The seed for pretty much any api I write in node.js",
"main": "lib/index.js",
"nyc": {
"check-coverage": true,
"lines": 64,
"functions": 74,
"branches": 54,
"statements": 64,
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"exclude": [
"config/**",
"coverage/**",
"lib/**",
"logs/**",
"public/**",
"report/**",
"test/**"
],
"require": [
"babel-register"
]
},
"scripts": {
"start": "node .",
"build": "babel src -d lib -w --copy-files",
"watch": "nodemon .",
"test": "nyc mocha \"test/**/*.unit.js\" \"test/**/*.integration.js\"",
"unit-test": "nyc mocha \"test/**/*.unit.js\"",
"prettier": "node_modules/.bin/prettier --write --tab-width=4 --single-quote=true --print-width=100 \"{src,test,utilities,config}/**/*.js\" \"{index.js,get-opportunities.js,worker.js}\"",
"lint": "node_modules/.bin/eslint \"src/**/*.js\" \"test/**/*.js\" index.js --fix",
"lint-ci": "node_modules/.bin/eslint \"src/**/*.js\" \"test/**/*.js\" index.js",
"report": "plato -r -d report -e .eslintrc src",
"update": "node_modules/.bin/npm-check -Eu",
"audit": "node_modules/.bin/nsp check",
"secure": "node_modules/.bin/snyk wizard",
"setDeploymentDate": "node ./utilities/set-deployment-date/index.js",
"ensureNoWildcards": "node ./utilities/check-dependencies-for-wildcards/index.js",
"snyk-protect": "snyk protect",
"snyk-test": "snyk test",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eXigentCoder/node-api-seed.git"
},
"keywords": [
"node",
"seed",
"api",
"express"
],
"author": "Ryan Kotzen <[email protected]> (http://exigentcoder.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/eXigentCoder/node-api-seed/issues"
},
"homepage": "https://github.com/eXigentCoder/node-api-seed#readme",
"dependencies": {
"acl": "0.4.10",
"ajv": "5.1.5",
"api-query-params": "4.4.0",
"async": "2.4.1",
"bcrypt": "1.0.2",
"body-parser": "1.17.2",
"boom": "5.1.0",
"cors": "2.8.3",
"express": "4.15.3",
"express-brute": "1.0.1",
"express-brute-mongo": "1.0.0",
"express-sanitize-escape": "1.1.0",
"get-parameter-names": "0.3.0",
"helmet": "3.6.1",
"json-schema-faker": "0.5.0-rc6",
"json-schema-filter": "0.1.5",
"json-schema-ref-parser": "3.1.2",
"jsonwebtoken": "7.4.1",
"lodash": "4.17.4",
"moment": "2.18.1",
"mongodb": "2.2.28",
"morgan": "1.8.2",
"nconf": "0.8.4",
"node-glob-loader": "0.0.15",
"node-uuid": "1.4.8",
"passport": "0.3.2",
"passport-jwt": "2.2.1",
"password-generator": "2.1.0",
"pluralize": "5.0.0",
"request-id": "0.11.1",
"sinon": "2.3.4",
"snyk": "1.34.4",
"swagger-spec-express": "2.0.3",
"winston": "2.3.1",
"winston-daily-rotate-file": "1.4.6",
"winston-graylog2": "0.6.0",
"winston-loggly": "1.3.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-env": "1.5.2",
"chai": "4.0.2",
"dirty-chai": "2.0.0",
"eslint": "4.0.0",
"eslint-config-prettier": "2.1.1",
"eslint-plugin-node": "5.0.0",
"eslint-plugin-prettier": "2.1.2",
"glob": "7.1.2",
"istanbul": "0.4.5",
"mocha": "3.4.2",
"node-mocks-http": "1.6.2",
"nodemon": "1.11.0",
"npm-check": "5.4.4",
"nsp": "2.6.3",
"nyc": "11.0.2",
"plato": "1.7.0",
"prettier": "1.4.4",
"proxyquire": "1.8.0",
"sinon-chai": "2.11.0",
"supertest": "3.0.0",
"swagger-ui": "3.0.14"
},
"snyk": true
}