-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 2.96 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@js-telecortex-2/js-telecortex-2-server",
"version": "0.2.2",
"description": "A NodeJS server for controlling APA102/SK9822/WS281X LED strips over OPC",
"main": "src/main.js",
"bin": {
"telecortex-server": "dist/bundle.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src --config .eslintrc",
"lint:fix": "eslint src --config .eslintrc --fix",
"pretty": "prettier **/*.js --config .prettierrc --write",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"test:ci": "jest --ci --coverage",
"test:build": "npm start -- -h",
"coverage": "codecov",
"build": "webpack --config webpack.config.js",
"build:dev": "NODE_ENV=development npm run build",
"build:prod": "NODE_ENV=production npm run build",
"postinstall": "patch-package",
"prestart": "npm run build",
"prestart:dev": "npm run build:dev",
"start": "node --harmony dist/bundle.js",
"start:dev": "node --harmony dist/bundle.js",
"start:nodemon": "nodemon --exec npm run start:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laserphile/JS-Telecortex-2-Server.git"
},
"author": "moonbase-labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Laserphile/JS-Telecortex-2-Server/issues"
},
"homepage": "https://github.com/Laserphile/JS-Telecortex-2-Server#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"codecov": "^3.7.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.5.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"node-loader": "^0.6.0",
"nodemon": "^1.19.1",
"patch-package": "^6.2.2",
"prettier": "^1.17.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^2.5.2"
},
"keywords": [
"open pixel control",
"opc",
"raspberry pi",
"apa102",
"sk9822",
"ws2811",
"ws2812",
"ws281x",
"neopixel",
"dotstar"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@js-telecortex-2/js-telecortex-2-util": "1.1.6",
"binary": "^0.3.0",
"chalk": "^2.4.2",
"core-js": "^3.6.5",
"expect": "^26.4.2",
"lodash": "^4.17.11",
"pi-spi": "^1.2.1",
"pixelblaze-expander": "^0.1.1",
"source-map-support": "^0.5.19",
"yargs": "^16.0.3"
},
"jest": {
"setupFiles": [
"<rootDir>/src/testing/setupTests.js"
]
},
"engines": {
"node": ">=10.0"
}
}