forked from marc-ed-raffalli/lb-declarative-e2e-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "lb-declarative-e2e-test",
"version": "0.5.0",
"description": "Declaration driven test generator for Loopback applications",
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "cross-env NODE_ENV=test nyc mocha --opts mocha.opts",
"test-watch": "NODE_ENV=test mocha --opts mocha.opts --watch",
"posttest": "npm run lint && nsp check",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"nyc": "nyc report",
"build": "babel src --out-dir lib"
},
"keywords": [
"api",
"automation",
"e2e",
"js",
"loopback",
"mocha",
"rest",
"strongloop",
"supertest",
"test"
],
"author": "Marc Ed Raffalli",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marc-ed-raffalli/lb-declarative-e2e-test.git"
},
"bugs": "https://github.com/marc-ed-raffalli/lb-declarative-e2e-test/issues",
"dependencies": {
"@babel/runtime": "^7.9.2",
"debug": "^3.1.0",
"declarative-test-structure-generator": "^0.2.2",
"supertest": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "^10.1.0",
"babel-plugin-wildcard": "^6.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^4.18.2",
"mocha": "^5.0.4",
"nsp": "^3.2.1",
"nyc": "^11.6.0",
"sinon": "^4.4.6"
}
}