forked from jcane86/motor-hat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.26 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
{
"name": "motor-hat",
"version": "1.0.0-semanticrelease",
"description": "Node Module to control Adafruits MotorHAT for the RaspberryPi",
"homepage": "http://www.github.com/jcane86/motor-hat",
"author": {
"name": "J. Cane",
"email": "jcane86@gmail.com",
"url": "www.github.com/jcane86"
},
"files": [
"dist",
"README.md"
],
"main": "dist/index.js",
"keywords": [
"raspberry",
"pi",
"raspberrypi",
"motor",
"dc",
"stepper",
"servo",
"motorhat",
"hat"
],
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^3.0.2",
"del": "^4.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^4.2.1",
"ink-docstrap": "^1.3.0",
"isparta": "^4.0.0",
"jsdoc": "^3.5.5",
"jsdoc-githubify": "github:jcane86/jsdoc-githubify",
"mocha": "^6.0.0",
"mutiny": "^0.4.0",
"namis": "^1.0.3",
"nyc": "^15.0.0",
"proxyquire": "^2.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^16.0.0",
"should": "^13.0.0",
"should-sinon": "0.0.6",
"sinon": "^8.0.0"
},
"repository": "jcane86/motor-hat",
"scripts": {
"precommit": "npm run check-coverage",
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"watch:test": "npm t -- -w",
"test": "nyc -r=lcov mocha test/ --require babel-register",
"posttest": "npm run lint",
"lint": "eslint .",
"prebuild": "rimraf dist",
"build": "babel --copy-files --out-dir dist --ignore test/ lib",
"build-docs": "rimraf docs && jsdoc -c ./jsdoc.conf.json && node gitify-docs.js",
"semantic-release": "semantic-release"
},
"license": "MIT",
"dependencies": {
"async": "^3.1.0",
"debug": "^4.0.0",
"i2c-bus": "^1.2.0",
"parambulator": "^1.5.2",
"raspi-ver": "^1.0.2",
"sleep": "^6.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}