This repository has been archived by the owner on Aug 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "dash-button",
"version": "3.2.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"
},
"enginesStrict": {
"node": ">=8.3"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"lint": "eslint --ext .ts,.d.ts src",
"prepare": "rm -rf build && tsc",
"start": "node build/cli.js",
"test": "jest",
"watch": "tsc --watch"
},
"jest": {
"roots": [
"<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": {
"nullthrows": "^1.1.1",
"pcap": "^2.1.0",
"yargs": "^14.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/yargs": "^13.0.2",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-jest": "^25.0.0",
"eslint": "^6.4.0",
"eslint-config-universe": "^2.0.0",
"jest": "^25.0.0",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
}
}