-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "temper-usb",
"version": "0.1.0",
"description": "Node TEMPer USB library and CLI",
"main": "index.js",
"files": [
"dist",
"bin",
"etc",
"docs",
"index.js",
"src"
],
"bin": {
"temper": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlucool/temper-usb.git"
},
"bugs": {
"url": "https://github.com/mlucool/temper-usb/issues"
},
"homepage": "https://github.com/mlucool/temper-usb#readme",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"preversion": "echo \"Another version! Keep up the good work!\"",
"version": "",
"postversion": "git push && git push --tags",
"prepublish": "gulp default",
"coveralls": "gulp test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"javascript",
"node",
"TEMPer",
"temperature",
"usb",
"raspberry pi",
"raspberrypi"
],
"author": {
"name": "Marc Udoff",
"email": "[email protected]"
},
"pre-commit": [
"lint",
"test",
"doc"
],
"license": "Apache-2.0",
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"bluebird": "^3.4.7",
"command-line-args": "^4.0.1",
"command-line-usage": "^4.0.0",
"debug": "^2.6.1",
"lodash": "^4.17.4",
"usb": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-jsdoc3": "^1.0.1",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.4.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"pre-commit": "^1.1.2",
"run-sequence": "^1.1.5"
}
}