-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
{
"name": "netmd-js",
"version": "4.2.2",
"description": "Access to NetMD MiniDisc devices",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cybercase/netmd-js.git"
},
"scripts": {
"test": "jest",
"build": "tsc && chmod +x dist/cli.js",
"dev": "tsc --watch",
"cli": "ts-node src/cli.ts"
},
"lint-staged": {
"src/**/*.{ts}": "prettier --config .prettierrc --check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bin": {
"netmdcli": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"MiniDisc",
"NetMD",
"WebUSB",
"Mini Disc"
],
"author": "Stefano Brilli <stefano@brilli.me> (https://stefano.brilli.me/), Asivery <asivery@protonmail.com> (https://github.com/asivery/)",
"license": "GPL-2.0",
"devDependencies": {
"@types/browser-bunyan": "^0.4.5",
"@types/bunyan": "^1.8.6",
"@types/diacritics": "^1.3.1",
"@types/jest": "^25.1.2",
"@types/node": "^13.9.0",
"@types/w3c-web-usb": "^1.0.4",
"@types/yargs": "^15.0.4",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node": "^10.8.1",
"typescript": "^3.9.10"
},
"dependencies": {
"@originjs/crypto-js-wasm": "github:asivery/crypto-js-wasm",
"browser-bunyan": "^1.5.3",
"buffer": "^5.5.0",
"bunyan": "^1.8.12",
"diacritics": "^1.3.0",
"jconv": "^0.1.5",
"jsbi": "^3.1.1",
"usb": "^2.4.2",
"yargs": "^15.1.0"
}
}