-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "lego-boost-browser",
"version": "0.1.0",
"description": "Web Bluetooth API control package for Lego Boost",
"main": "dist/legoBoost.js",
"types": "dist/legoBoost.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"build:browser": "mkdirp dist && browserify ./src/browser.ts --debug -p [ tsify ] > ./dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tsc --noEmit && tslint --project ./tsconfig.json",
"prettier": "cross-env prettier --check './src/**/*'"
},
"author": "Tomi Tuhkanen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ttu/lego-boost-browser/issues"
},
"homepage": "https://github.com/ttu/lego-boost-browser#readme",
"devDependencies": {
"browserify": "^16.5.1",
"cross-env": "^5.2.1",
"mkdirp": "^0.5.5",
"prettier": "^1.19.1",
"ts-node": "^8.10.2",
"tsify": "^4.0.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@types/web-bluetooth": "^0.0.7"
}
}