-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.63 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
{
"version": "1.0.0",
"name": "js-gpiozero",
"description": "A simple interface to GPIO devices with Raspberry Pi using nodejs",
"main": "./gpiozero/index.js",
"repository": {
"type": "git",
"url": "https://github.com/miketrebilcock/js-gpiozero.git"
},
"bugs": {
"url": "https://github.com/miketrebilcock/js-gpiozero/issues"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha && codecov",
"changelog": "standard-changelog -i CHANGELOG.md -w",
"lint": "eslint ./gpiozero/**/*.js ./test/**/*.js",
"docs": "jsdoc ./gpiozero -R ./README.md -d docs -c jsdoc.json",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"rwlock": "5.0.0",
"wiring-pi": "^2.2.1"
},
"devDependencies": {
"chai": "3.5.0",
"codecov": "3.6.5",
"cz-conventional-changelog": "1.2.0",
"docdash": "0.4.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.3.2",
"eslint-config-node": "1.6.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "2.4.0",
"istanbul": "0.4.5",
"jsdoc": "3.6.4",
"mocha": "3.5.3",
"mocha-eslint": "3.0.1",
"semantic-release": "6.3.6"
},
"keywords": [
"wiringPi",
"gpio",
"raspberry",
"pi",
"raspberrypi",
"bcm2835"
],
"author": "Mike Trebilcock <mike@trebilcock.net>",
"contributors": [],
"license": "ISC",
"homepage": "https://miketrebilcock.github.io/js-gpiozero/",
"directories": {
"doc": "docs",
"test": "tests"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}