-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "misfit-bolt-http",
"version": "1.0.1",
"description": "Misfit Bolt HTTP Interface",
"keywords": [
"misfit",
"bolt",
"api",
"light",
"bulb",
"http"
],
"bugs": {
"url": "https://github.com/flochtililoch/misfit-bolt-http/issues",
"email": "flochtililoch+npm-misfit-bolt-http@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/flochtililoch/misfit-bolt-http.git"
},
"scripts": {
"lint": "./node_modules/.bin/jshint *.js",
"test": "npm run lint && ./node_modules/.bin/mocha *.js **/*.js",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags"
},
"main": "index.js",
"bin": {
"misfit-bolt-http": "./index.js"
},
"author": {
"name": "Florent Bonomo",
"email": "flochtililoch@gmail.com"
},
"license": "ISC",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"minimist": "^1.2.0",
"misfit-bolt": "^2.0.1"
},
"devDependencies": {
"jshint": "^2.9.2"
}
}