-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "noah",
"private": true,
"version": "1.0.0",
"description": "Scheduling as a service platform to talk to REST APIs recurringly.",
"keywords": [],
"dependencies": {
"@sailshq/lodash": "3.10.3",
"ajv": "6.10.2",
"async": "3.1.0",
"cron": "1.7.2",
"dotenv": "8.1.0",
"request": "2.88.0",
"sails": "1.1.0",
"sails-hook-orm": "2.1.1",
"sails-mysql": "1.0.1"
},
"devDependencies": {
"@sailshq/eslint": "4.19.3",
"chai": "4.2.0",
"coveralls": "3.0.6",
"eslint": "6.5.1",
"eslint-plugin-lodash": "6.0.0",
"eslint-plugin-security": "1.4.0",
"mocha": "6.2.1",
"mysql": "2.17.1",
"nock": "11.3.6",
"nyc": "14.1.1",
"recursive-readdir": "2.2.2",
"sinon": "7.5.0",
"supertest": "4.0.2"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"test": "npm run test-lint && npm run test-unit && npm run test-integration",
"test-lint": "node npm/test-lint.js",
"test-unit": "nyc --reporter=text-lcov --reporter=text-summary --include api/policies/ --include api/services/UtilService.js node npm/test-unit.js",
"test-integration": "nyc --reporter=text-lcov --reporter=text-summary --include api/ --exclude api/services/UtilService.js node npm/test-integration.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/deepakpathania/noah.git"
},
"author": "deepakpathania",
"license": "",
"engines": {
"node": "10.16"
}
}