-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "kch-rgbw-lib",
"version": "2.1.1",
"description": "RGB/RGBW LED class library",
"main": "dist/index.js",
"scripts": {
"prebuild": "lint",
"build": "tsc",
"fix": "run-p fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext js,ts .",
"lint:prettier": "prettier -l \"**/*.{json,md,yml}\"",
"lint:type": "tsc --noEmit",
"test": "run-s lint test:*",
"test:unit": "jest --coverage && coveralls < coverage/lcov.info",
"tslint": "tslint 'src/**/*.ts'"
},
"keywords": [
"LED",
"Many-color LED",
"RGB/HSV/CIE",
"Color temperature",
"Wavelength"
],
"author": "Kiyo Chinzei",
"license": "MIT",
"contributors": [
{
"name": "Kiyo Chinzei",
"email": "kchinzei@gmail.com"
}
],
"bundleDependencies": false,
"dependencies": {
"mathjs": "^9.4.3",
"svd-js": "^1.1.1",
"linear-program-parser": "^1.0.11",
"linear-program-solver": "^1.2.0"
},
"deprecated": false,
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"jest": "^27.0.5",
"ts-jest": "^27.0.3",
"tslint": "^6.1.1",
"typescript": "^4.3.4",
"eslint": "^7.29.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"agh.sprintf": "^0.0.11"
},
"engines": {
"node": ">= 10.20.0"
},
"homepage": "https://github.com/kchinzei/kch-rgbw-lib",
"repository": {
"type": "git",
"url": "git+https://github.com/kchinzei/kch-rgbw-lib.git"
},
"types": "./declarations/index.d.ts"
}