-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1018 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1018 Bytes
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
{
"name": "oehu-setup-api",
"version": "1.0.0",
"description": "Internal API to setup OEHU",
"private": true,
"scripts": {
"dev": "mono dev",
"start": "cross-env NODE_ENV=production mono",
"lint": "eslint src/ conf/ test/",
"test": "npm run lint && nyc ava --verbose --serial --fail-fast test/ && nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"nyc": {
"include": [
"src/"
]
},
"license": "MIT",
"dependencies": {
"bigchaindb-driver": "^4.1.0",
"bip39": "^2.5.0",
"cross-env": "^5.1.1",
"mono-core": "latest",
"mono-doc": "latest",
"pi-wifi": "^1.2.0",
"veh-bigchaindb-uploader": "git+https://github.com/OEHU/veh-bigchaindb-uploader.git",
"veh-read-and-write": "git+https://github.com/OEHU/veh-read-and-write.git"
},
"devDependencies": {
"mono-test-utils": "^1.2.3",
"ava": "^0.25.0",
"codecov": "^3.0.0",
"eslint": "^4.13.1",
"nyc": "^11.3.0"
}
}