-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "node-blinkt",
"author": "Rob Evans - Irrelon Software Limited",
"description": "A Node.js Library to Interact With the Raspberry Pi Blinkt! LED Hat.",
"version": "1.2.1",
"main": "./dist/Blinkt",
"scripts": {
"test": "node example",
"build": "rimraf dist && babel ./src/*.js --out-dir dist && babel ./example/*.js --out-dir dist/example",
"eslint": "eslint ./src/**.js ./tests/**.js",
"eslint-fix": "eslint --fix ./src/**.js"
},
"keywords": [
"node",
"blinkt",
"irrelon"
],
"private": false,
"dependencies": {
"@babel/runtime": "^7.8.7",
"node-wiring-pi": "0.0.5"
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/irrelon/node-blinkt.git"
},
"bugs": {
"url": "http://github.com/irrelon/node-blinkt/issues"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-irrelon": "^1.0.10",
"rimraf": "^2.7.1"
},
"license": "ISC"
}