-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1010 Bytes
/
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
{
"name": "rtl-sdr",
"version": "0.1.0",
"description": "RTL-SDR experiments",
"main": "index.js",
"scripts": {
"test": "eslint bin lib",
"build.main": "browserify ./lib/main.js | terser --compress -o docs/main.js",
"watch.main": "watchify ./lib/main.js -o '| terser --compress > docs/main.js' -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AI6YP/rtl-sdr.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/AI6YP/rtl-sdr/issues"
},
"homepage": "https://github.com/AI6YP/rtl-sdr#readme",
"dependencies": {
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"browserify": "^17.0.0",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"eslint": "^8.57.0",
"onml": "^2.1.0",
"style-mod": "^4.1.2",
"http-server": "^14.1.0",
"terser": "^5.27.0",
"watchify": "^4.0.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint8/node12"
}
}