-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "device-tessel",
"version": "1.0.0",
"description": "Tessel device connector for Brewfactory",
"main": "index.js",
"scripts": {
"start": "node index.js",
"jscs": "jscs src",
"jshint": "jshint src",
"test": "NODE_ENV=test mocha $(find src -name \"*.spec.js\")",
"coverage": "NODE_ENV=test istanbul cover _mocha $(find src -name \"*.spec.js\"); open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brewfactory/device-tessel.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/brewfactory/device-tessel/issues"
},
"homepage": "https://github.com/brewfactory/device-tessel#readme",
"pre-commit": [
"jshint",
"jscs",
"test"
],
"engines": {
"node": "0.12.4"
},
"devDependencies": {
"chai": "^3.0.0",
"chai-subset": "^1.0.1",
"istanbul": "^0.3.15",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"pre-commit": "^1.0.10",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"lodash": "^3.9.3"
},
"hardware": {
"chai": false,
"chai-subset": false,
"istanbul": false,
"jscs": false,
"jshint": false,
"mocha": false,
"pre-commit": false,
"sinon": false,
"sinon-chai": false
}
}