-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.59 KB
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
{
"name": "inkyphat",
"version": "1.3.2",
"description": "NodeJS Library for Raspberry Pi InkyPhat",
"main": "lib/inkyphat.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=8.17.0"
},
"dependencies": {
"npm": ">=6.13.4",
"onoff": "^6.0.3",
"pi-spi": "^1.2.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0"
},
"scripts": {
"test": "node_modules/.bin/mocha test/* --reporter spec --timeout 3000",
"coverage": "nyc --reporter=html --reporter=text node_modules/mocha/bin/_mocha test/*",
"report": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/eslint .",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbertie/inkyphat-node.git"
},
"keywords": [
"inkyphat",
"inky-phat",
"pimoroni",
"raspberry-pi",
"raspi",
"raspberry",
"pi"
],
"author": "Paul Birtle",
"license": "MIT",
"bugs": {
"url": "https://github.com/pbertie/inkyphat-node/issues"
},
"homepage": "https://github.com/pbertie/inkyphat-node#readme"
}