-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 868 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 868 Bytes
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
{
"name": "fel",
"version": "1.0.0",
"description": "",
"main": "dist/_index.js",
"types": "dist/_index.d.ts",
"scripts": {
"clean": "npm run-script clean-dist && npm run-script clean-docs",
"clean-dist": "del-cli ./dist",
"clean-docs": "del-cli ./docs",
"build-dist": "npm run-script clean-dist && tsc",
"build-docs": "npm run-script clean-docs && typedoc --theme minimal --out ./docs/ --excludePrivate --mode modules --exclude \"**/*/_*.ts\" ./src/",
"build-package": "npm run-script build-dist && npm pack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Daniel Radtke",
"license": "GPL-3.0",
"devDependencies": {
"del-cli": "^1.1.0",
"tslint": "^5.12.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3"
},
"dependencies": {
"@types/usb": "^1.5.1",
"usb": "^1.5.0"
}
}