This repository has been archived by the owner on Jan 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.55 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
{
"name": "nervi",
"version": "1.0.0",
"description": "Nerve systems of the Rover.",
"main": "index.js",
"dependencies": {
"if-env": "1.0.4"
},
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"eslint": "5.12.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"mocha": "5.2.0",
"nyc": "13.0.1"
},
"optionalDependencies": {
"pigpio": "1.2.1"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"init": "git submodule update --init --recursive",
"lint": "if-env NODE_ENV=CI && npm run lint: || npm run lint:fix",
"lint:": "eslint .",
"lint:fix": "eslint . --fix",
"preinstall": "git submodule foreach npm install",
"test": "if-env npm_config_dev=true && npm run test:dev || if-env npm_config_debug=true && npm run test:debug || npm run test:",
"test:": "nyc mocha --exit",
"test:debug": "cross-env DEBUG=RRS:* npm run test:",
"test:dev": "if-env npm_config_debug=true && cross-env NODE_ENV=development npm run test:debug || cross-env NODE_ENV=development npm run test:",
"update": "git submodule update -f & git submodule foreach git pull origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RescueOnWheels/Nervi.git"
},
"author": "RescueOnWheels",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/RescueOnWheels/Nervi/issues"
},
"homepage": "https://github.com/RescueOnWheels/Nervi#readme",
"directories": {
"lib": "lib"
}
}