-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·102 lines (102 loc) · 2.72 KB
/
package.json
File metadata and controls
executable file
·102 lines (102 loc) · 2.72 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "particle-gui",
"description": "Simple Node GUI application for working with your Particle devices and using the Particle Cloud",
"version": "1.17.0",
"author": "Daniel Marchena",
"repository": {
"type": "git",
"url": "https://github.com/SmartPowerSocket/particle-gui"
},
"license": "Apache-2.0",
"bin": {
"particle": "./bin/particle.js"
},
"main": "./index.js",
"engines": {
"node": ">=0.10.40"
},
"dependencies": {
"binary-version-reader": "^0.4.0",
"chalk": "^1.0.0",
"cli-spinner": "^0.2.1",
"cli-table": "^0.3.1",
"glob": "^4.2.1",
"form-data": "https://github.com/spark/form-data/archive/v1.0.0-relative-path.tar.gz",
"hogan.js": "^2.0.0",
"inquirer": "^0.11.2",
"latest-version": "^2.0.0",
"lodash": "^3.10.1",
"moment": "^2.9.0",
"node-wifiscanner2": "^1.2.0",
"request": "^2.46.0",
"semver": "^5.1.0",
"serialport": "^3.1.1",
"softap-setup": "^1.1.4",
"temp": "^0.8.3",
"when": "^3.7.2",
"xtend": "^4.0.0"
},
"scripts": {
"test": "mocha test/",
"lint": "eslint commands/**/*.js lib/**/*.js test/**/*.js *.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec 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",
"doctoc": "doctoc --title '## Table of Contents' README.md",
"update-firmware-binaries": "node scripts/update-firmware-binaries.js"
},
"contributors": [
{
"name": "Kenneth Lim",
"url": "https://github.com/kennethlimcp"
},
{
"name": "David Washington",
"url": "https://github.com/dwcares"
},
{
"name": "TJ Hunter",
"url": "https://github.com/Hypnopompia"
},
{
"name": "Udo Kramer",
"url": "https://github.com/optikfluffel"
},
{
"name": "vk2tds",
"url": "https://github.com/vk2tds"
},
{
"name": "Emily Rose",
"url": "https://github.com/emilyrose"
},
{
"name": "Kyle Marsh",
"url": "https://github.com/kylemarsh"
},
{
"name": "Harrison Jones",
"url": "https://github.com/harrisonhjones"
},
{
"name": "Bryce Kahle",
"url": "https://github.com/brycekahle"
},
{
"name": "Julien Vanier",
"url": "https://github.com/monkbroc"
}
],
"preferGlobal": true,
"devDependencies": {
"coveralls": "^2.11.4",
"doctoc": "^0.15.0",
"eslint": "^1.9.0",
"github": "^2.1.0",
"istanbul": "^0.3.22",
"mocha": "^2.2.5",
"proxyquire": "^1.6.0",
"rimraf-promise": "^2.0.0",
"should": "^7.0.2",
"sinon": "^1.15.4"
}
}