-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "tessel-gpio-relay",
"version": "1.0.1",
"description": "JavaScript driver for Tessel, to connect with multi-port relays via GPIO",
"main": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.16.0",
"mocha": "3.3.0",
"sinon": "2.2.0",
"t2-cli": "latest"
},
"scripts": {
"local": "npm run build; export NODE_NOT_TESSEL=1 ; node test.js",
"device": "npm run build && npm run t2:run",
"t2:erase": "t2 erase",
"t2:push": "t2 push ./test.js",
"t2:run": "t2 run ./test.js",
"build": "babel index.js --out-dir dist",
"test": "npm run build && node_modules/mocha/bin/mocha --ui tdd test/*",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git@github.com:necccc/tessel-gpio-relay.git"
},
"author": "nec@shell8.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/necccc/tessel-gpio-relay/issues"
},
"homepage": "https://github.com/necccc/tessel-gpio-relay"
}