-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 1.44 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": "softap-setup",
"version": "4.1.0",
"description": "Node Client for SoftAP Setup",
"main": "index.js",
"engines": {
"node": ">=4"
},
"browser": "./lib/HttpSoftAP.js",
"scripts": {
"test": "mocha test/",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint -f unix **/*.js",
"lint:fix": "eslint --fix -f unix **/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/spark/softap-setup-js.git"
},
"author": {
"name": "Emily Rose",
"email": "nexxy@particle.io"
},
"contributors": [
{
"name": "Tom Distler",
"email": "tom@brewsolid.com"
},
{
"name": "Mark Solters",
"email": "msolters@gmail.com"
},
{
"name": "Vishal Talwar",
"email": "rawlatv@gmail.com"
}
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/spark/softap-setup-js/issues"
},
"homepage": "https://github.com/spark/softap-setup-js",
"dependencies": {
"node-rsa": "^0.4.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.4",
"eslint": "^3.15.0",
"eslint-config-particle": "^1.0.2",
"istanbul": "^0.4.0",
"mocha": "^3.2.0",
"should": "^8.2.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"softap-emulator-js": "^1.0.3"
}
}