-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.33 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
{
"name": "luminave-fivetwelve",
"version": "0.0.1",
"description": "Provides a server that can interact with luminave over WebSockets to control USB DMX512 controllers",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.node.config.js",
"bundle": "webpack --config webpack.node-bundle.config.js",
"start": "./node_modules/.bin/npm-run-all --parallel watch:server watch:build",
"watch:build": "webpack --config webpack.node.config.js --watch",
"watch:server": "nodemon --inspect=\"9229\" \"./build/bundle.js\" --watch \"./build\" ",
"test": "jest",
"prepare": "ln -sf ../node_modules/@serialport/bindings/build/Release/ build/Release",
"clean": "rimraf umd docs/*.js docs/*.map",
"jsdoc": "jsdoc2md --heading-depth 2 --partial .github/scope.hbs --template .github/API_template.md --files example.js > docs/API.md",
"toc": "markdown-toc -i README.md",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NERDDISCO/luminave-fivetwelve.git"
},
"keywords": [
"luminave",
"dmx512",
"fivetwelve"
],
"author": "Tim Pietrusky",
"license": "MIT",
"bugs": {
"url": "https://github.com/NERDDISCO/luminave-fivetwelve/issues"
},
"homepage": "https://github.com/NERDDISCO/luminave-fivetwelve#readme",
"dependencies": {
"dotenv": "^8.0.0",
"fivetwelve": "^1.0.0-alpha.1",
"fivetwelve-bridge": "^1.0.1",
"fivetwelve-cli-debug-driver": "^0.2.0",
"fivetwelve-driver-artnet": "0.0.1",
"fivetwelve-driver-usbpro": "github:beyondscreen/fivetwelve-driver-usbpro",
"serialport": "^7.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^4.0.3",
"babel-jest": "^22.4.3",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"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",
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"babel-loader": "^8.0.4",
"babel-preset-latest-node": "^2.0.0-beta.3",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
}
}