-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.77 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
{
"name": "@iftt/garage-client",
"version": "1.7.4",
"description": "This is IoT code that listens/posts to the tangle and opens or closes the garage.",
"main": "lib/index.js",
"scripts": {
"lint+build+test": "yarn run lint && yarn run build && yarn run test",
"lint": "echo linting... && standard ./src/**/*.js && echo 'successfully linted'",
"build": "echo building... && babel src/ -d lib/ --source-maps inline --copy-files && echo 'successfully built'",
"prepublish": "yarn run build",
"test": "echo running server tests... && standard && tape test/**/*.js | tap-summary && echo 'successfully completed tests'"
},
"repository": {
"type": "git",
"url": "https://github.com/iftt/garage-client.git"
},
"author": "Craig OConnor",
"license": "ISC",
"bugs": {
"url": "https://github.com/iftt/garage-client/issues"
},
"homepage": "https://github.com/iftt/garage-client#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"core-js": "3",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.6.1",
"flow-bin": "^0.97.0",
"standard": "*",
"tap-summary": "^4.0.0",
"tape": "^4.10.1",
"yarn-upgrade-all": "^0.5.0"
},
"dependencies": {
"@iftt/icc-fpga-protocol": "^1.1.0",
"@iftt/mam": "^0.6.2",
"@iftt/program-generator": "^1.1.0",
"@iftt/tryte-buffer": "^1.3.0",
"axios": "^0.18.0",
"dotenv": "^7.0.0",
"nedb": "^1.8.0",
"onoff": "^4.1.1",
"queue": "^6.0.1",
"serialport": "^7.1.4",
"socket.io": "^2.2.0"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
}
}