-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.09 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
43
{
"name": "openfruit-models",
"version": "1.0.0",
"description": "The Open Fruit platform's models.",
"main": "index.js",
"scripts": {
"test": "nyc --all mocha --recursive './test/**/*.test.js'",
"feature-tests": "./node_modules/@cucumber/cucumber/bin/cucumber-js",
"coverage": "nyc --all --reporter=lcov npm test"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
},
"nyc": {
"all": true,
"exclude": [
"features/stepDefinitions/*",
"coverage/*",
"test/*",
"index.js",
"src/index.js"
]
},
"author": "Mike Cornwell",
"license": "GPLv3",
"dependencies": {
"cucumber": "^7.0.0-rc.0",
"functional-models": "^1.0.25",
"functional-models-auth": "^1.0.4",
"functional-models-orm": "^1.0.13",
"get-random-values": "^1.2.2",
"lazy-property": "^1.0.0",
"lodash": "^4.17.21"
}
}