forked from miketrebilcock/js-pigpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "js-pigpio",
"version": "0.0.0-development",
"description": "pure js implementation of pigpio",
"main": "./js-pigpio/index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha && codecov",
"commit": "git-cz",
"changelog": "standard-changelog -i CHANGELOG.md -w",
"lint": "eslint ./js-pigpio/**/*.js ./test/**/*.js",
"docs": "jsdoc ./js-pigpio -R ./README.md -d docs -c jsdoc.json",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "",
"license": "ISC",
"dependencies": {
"es6-set": "^0.1.4",
"node-constants": "0.0.2",
"put": "0.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/i-am-digital/js-pigpio.git"
},
"bugs": {
"url": "https://github.com/i-am-digital/js-pigpio/issues"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^1.0.1",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"docdash": "^0.4.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-config-node": "^1.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsdoc": "^2.4.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"mocha-eslint": "^3.0.1",
"semantic-release": "^6.3.2"
},
"keywords": [
"pigpio",
"pigpiod",
"servo",
"pwm",
"hardware pwm",
"raspberry",
"pi",
"raspberry pi",
"raspberrypi",
"dma",
"gpio"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}