forked from ide/dash-button
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dash-button",
"version": "2.0.0",
"description": "A small server that reacts to Amazon Dash buttons on your WiFi network",
"main": "build/DashButton.js",
"files": [
"build"
],
"bin": {
"dash-button": "build/cli.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "gulp build",
"lint": "eslint src",
"prepublish": "gulp clean && gulp build",
"start": "node build/cli.js",
"test": "jest",
"watch": "gulp watch"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"node"
],
"testPathDirs": [
"<rootDir>/src"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ide/dash-button.git"
},
"keywords": [
"amazon",
"dash",
"button"
],
"author": "James Ide",
"license": "MIT",
"bugs": {
"url": "https://github.com/ide/dash-button/issues"
},
"homepage": "https://github.com/ide/dash-button#readme",
"dependencies": {
"babel-runtime": "^6.11.6",
"lodash": "^4.17.0",
"pcap": "mranney/node_pcap#d920204",
"yargs": "^6.4.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-trailing-function-commas": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.4.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-function-bind": "^6.3.13",
"babel-plugin-transform-runtime": "^6.15.0",
"eslint": "^3.10.0",
"eslint-config-exponent": "^5.1.3",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "^6.1.1",
"gulp-changed": "^1.3.2",
"jest-cli": "^17.0.1",
"rimraf": "^2.5.4"
}
}