-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "wirelesstags",
"version": "0.7.3",
"description": "Interface to the Wireless Sensor Tags platform (http://wirelesstag.net)",
"main": "index.js",
"scripts": {
"test": "mocha",
"test:ci": "npm run test -- test/{01,02,03}_*.js",
"test:rw": "npm run test -- test/04_*.js",
"test:kumostat": "npm run test -- test/05_*.js",
"lint": "eslint",
"pretest": "npm run lint -- .",
"doc": "jsdoc -r -c .jsdoc-conf.json -d ./docs/ .",
"predoc": "rm -rf docs/$npm_package_name/$npm_package_version",
"genjs": "cd examples; for d in *.js.md ; do erudite --preset env -o `basename $d .md` $d ; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hlapp/wirelesstags-js.git"
},
"keywords": [
"wirelesstag",
"iot"
],
"author": "Hilmar Lapp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hlapp/wirelesstags-js/issues"
},
"homepage": "https://github.com/hlapp/wirelesstags-js#readme",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"deep-equal": ">=1.0.1",
"promise-retry": "^1.1.1",
"request": ">=2.79.0",
"soap": "^0.23.0",
"timeout-as-promise": "^1.0.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"chai": "^4.0.0",
"chai-as-promised": "^7.1.0",
"erudite": "^0.7.1",
"eslint": "^4.2.0",
"jsdoc": "^3.5.0",
"mocha": "*",
"p-any": "^1.0.0",
"p-limit": "^1.1.0",
"sinon": "^4.0.0",
"sinon-chai": "^2.8.0"
}
}