forked from searls/simplisafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "simplisafe",
"version": "1.0.0",
"description": "A Node.js wrapper around the undocumented Simplisafe HTTP API",
"main": "lib/simplisafe.js",
"scripts": {
"test": "npm run test:unit && npm run style && npm run test:safe",
"test:unit": "teenytest --helper test/unit-helper.js \"lib/**/*.test.js\"",
"test:safe": "teenytest --helper test/safe-helper.js \"test/safe/**/*.js\"",
"style": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/searls/simplisafe.git"
},
"keywords": [
"simplisafe"
],
"author": "Justin Searls <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/searls/simplisafe/issues"
},
"homepage": "https://github.com/searls/simplisafe#readme",
"devDependencies": {
"core-assert": "^0.2.0",
"dotenv": "^2.0.0",
"standard": "^7.1.2",
"teenytest": "^5.0.2",
"testdouble": "^1.4.3"
},
"dependencies": {
"lodash": "^4.13.1",
"request": "^2.72.0"
},
"standard": {
"globals": [
"td",
"assert"
]
},
"teenytest": {
"timeout": 60000
}
}