-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.14 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
69
{
"name": "webusb-neopixel-controller",
"version": "1.0.1",
"description": "Manage NeoPixels with an Arduino-based controller directly from the browser by leveraging WebUSB.",
"main": "controller.js",
"module": "controller.js",
"jsnext:main": "controller.js",
"unpkg": "umd/webusb-neopixel-controller.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "webpack-dev-server --hot --config webpack.demo.config.js",
"test": "jest",
"build": "npm run clean && npm run build:umd && npm run build:demo",
"build:demo": "cross-env NODE_ENV=production webpack --config webpack.demo.config.js",
"build:umd": "cross-env NODE_ENV=production webpack --config webpack.umd.config.js",
"clean": "rimraf umd docs/*.js docs/*.map",
"jsdoc": "jsdoc2md --heading-depth 2 --partial .github/scope.hbs --template .github/API_template.md --files controller.js > docs/API.md",
"toc": "markdown-toc -i README.md",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"author": "Tim Pietrusky",
"license": "MIT",
"keywords": [
"webusb",
"neopixel",
"dmx",
"arduino",
"lights",
"lighting",
"fixture"
],
"bugs": {
"url": "https://github.com/NERDDISCO/webusb-neopixel-controller/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NERDDISCO/webusb-neopixel-controller.git"
},
"homepage": "https://github.com/NERDDISCO/webusb-neopixel-controller#readme",
"files": [
"umd",
"controller.js",
"README.md",
"docs/CHANGELOG.md",
"docs/API.md"
],
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^4.0.3",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"hsl-to-rgb-lightweight": "^1.0.9",
"jest": "^22.4.3",
"jsdoc-to-markdown": "^4.0.1",
"markdown-toc": "^1.2.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.1.7",
"travis-deploy-once": "^5.0.0",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
}
}