forked from particle-iot-archived/particle-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.27 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
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
{
"name": "particle-dev",
"main": "./lib/main",
"version": "0.2.2",
"description": "Professional, hackable IDE for Particle, based on Github's Atom",
"repository": "https://github.com/particle-iot/particle-dev",
"license": "Apache-2.0",
"engines": {
"atom": ">0.50.0"
},
"scripts": {
"lint": "eslint -f unix lib/**/*.js",
"lint:fix": "eslint --fix -f unix",
"test:unit": "mocha test/**/*.spec.js -R spec --compilers js:babel-register"
},
"dependencies": {
"atom-package-deps": "^4.6.0",
"atom-space-pen-views": "^2.0.3",
"fs-plus": "^2.0.4",
"gcc-output-parser": "^0.0.4",
"glob": "^4.2.1",
"jquery": "^2.0.0",
"node-analytics": "^1.0.1",
"particle-commands": "^0.2.12",
"particle-dev-spec-stubs": "https://github.com/particle-iot/particle-dev-spec-stubs/archive/v0.0.2.tar.gz",
"particle-dev-views": "https://github.com/particle-iot/particle-dev-views/archive/v0.1.0.tar.gz",
"particle-library-manager": "^0.1.11",
"request": "*",
"semver": "^5.3.0",
"serialport": "https://github.com/suda/node-serialport/archive/4.0.1.tar.gz",
"spark": "^0.5.9",
"underscore.string": "*",
"validator": "*",
"when": "*",
"xtend": "*"
},
"package-deps": [
"tool-bar",
"console-panel",
"particle-dev-profiles"
],
"providedServices": {
"particle-dev": {
"description": "Provides base Particle Dev functions",
"versions": {
"0.0.1": "provideParticleDev"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^0 || ^1": "consumeStatusBar"
}
},
"console-panel": {
"versions": {
"^1.0.0": "consumeConsolePanel"
}
},
"tool-bar": {
"versions": {
"^0 || ^1": "consumeToolBar"
}
},
"particle-dev-profiles": {
"versions": {
"^0.0.2": "consumeProfiles"
}
}
},
"readme": "ERROR: No README data found!",
"devDependencies": {
"babel-eslint": "^8.0.2",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^4.12.0",
"eslint-config-particle": "^2.0.0",
"mocha": "^3.2.0",
"sinon": "1.17.7",
"sinon-as-promised": "^4.0.3",
"sinon-chai": "^2.9.0"
}
}