forked from ajfisher/node-pixel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.85 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
{
"name": "node-pixel-async",
"version": "1.3.0",
"description": "Library for controlling addressable LEDs (such as NeoPixels) from firmata or Johnny Five.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples",
"doc": "docs"
},
"scripts": {
"test": "yarn jest && yarn nodeunit",
"nodeunit": "yarn build && cross-env IS_TEST_MODE=true nodeunit test",
"jest": "jest",
"jest-debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --no-cache --watchAll",
"clean": "rimraf dist/",
"prebuild": "yarn clean",
"build": "tsc",
"prepublishOnly": "yarn build && rimraf docs/ && yarn docs",
"semantic-release": "semantic-release",
"lint": "eslint . --ext .ts",
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs lib/",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "[email protected]:hweeks/node-pixel-async.git"
},
"keywords": [
"nodebots",
"johnny-five",
"leds",
"ws2812",
"ws2812b",
"ws2811",
"firmata",
"neopixel",
"rgb led"
],
"author": {
"name": "Andrew Fisher (ajfisher)",
"email": "[email protected]",
"url": "http://twitter.com/ajfisher"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hweeks/node-pixel-async/issues"
},
"dependencies": {
"color-string": "^1.5.3",
"eslint-plugin-jest": "^24.1.3"
},
"peerDependencies": {
"firmata": "^0.19.1",
"johnny-five": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.8",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/color-string": "^1.5.0",
"@types/firmata": "^0.19.3",
"@types/johnny-five": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-jest": "^26.6.3",
"board-io": "^3.0.4",
"commitizen": "^4.2.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.14.0",
"husky": "^4.3.0",
"istanbul": "^0.4.5",
"jest": "^26.6.3",
"johnny-five": "^2.0.0",
"mock-firmata": "0.2.0",
"nodeunit": "^0.11.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.4",
"sinon": "^9.1.0",
"standard-version": "^9.0.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}