-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.2 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
41
42
{
"name": "loopback-models-tasks",
"version": "0.2.0",
"description": "Loopback models for task api",
"main": "test/fixtures/loopback-app/server/server.js",
"scripts": {
"test": "npm run mocha:istanbul",
"test:all": "cross-env EG_DISABLE_CONFIG_WATCH=true mocha --recursive \"./test/*.test.js\" --timeout 60000",
"mocha:istanbul": "nyc --reporter=lcov npm run test:all && nyc report --report=lcov > coverage.lcov",
"posttest2": "npm run lint && nsp check",
"lint": "eslint ."
},
"keywords": [
"loopback",
"tasklist",
"todos"
],
"author": "pbhadauria2000",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.3.0",
"supertest": "^3.0.0",
"supertest-session": "^3.1.0",
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^1.3.0",
"loopback-boot": "^2.6.5",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0",
"loopback-component-explorer": "^5.0.0",
"loopback": "^3.0.0",
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"nsp": "^2.1.0"
},
"dependencies": {}
}