-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.2 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "particle-dev-libraries",
"main": "./lib/index.js",
"version": "0.2.30",
"description": "Libraries for Particle Dev",
"repository": {
"type": "git",
"url": "https://github.com/particle-iot/particle-dev-libraries.git"
},
"license": "Apache-2.0",
"engines": {
"atom": "^1.0.0"
},
"consumedServices": {
"particle-dev": {
"versions": {
"^0.0.1": "consumeCore"
}
},
"particle-dev-profiles": {
"versions": {
"^0.0.2": "consumeProfiles"
}
},
"tool-bar": {
"versions": {
"^0 || ^1": "consumeToolBar"
}
}
},
"package-deps": [
"particle-dev",
"particle-dev-profiles",
"tool-bar"
],
"dependencies": {
"atom-babel6-transpiler": "^1.1.2",
"atom-package-deps": "^4.6.0",
"atom-space-pen-views": "^2.2.0",
"atom-ts-transpiler": "^1.2.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"etch": "^0.8.0",
"event-kit": "^2.1.0",
"jquery": "^3.1.1",
"lodash": "^4.17.2",
"loophole": "^1.1.0",
"mixwith": "^0.1.1",
"particle-commands": "0.2.6",
"particle-dev-views": "https://github.com/particle-iot/particle-dev-views/archive/v0.1.0.tar.gz",
"particle-library-manager": "0.1.11",
"semver": "^5.3.0",
"typescript": "^2.5.3",
"when": "^3.7.7"
},
"readme": "# Libraries for Particle Dev\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/particle-iot/particle-dev-libraries/issues"
},
"homepage": "https://github.com/particle-iot/particle-dev-libraries#readme",
"scripts": {
"lint": "eslint -f unix lib spec",
"lint:fix": "eslint --fix -f unix lib spec",
"test:integration": "apm test",
"test:unit": "mocha test/ -R spec --compilers js:babel-register",
"test:all": "npm run test:unit && npm run test:integration",
"test": "npm run test:all",
"_prepublish": "echo",
"_preversion": "npm run lint && npm run test && npm run prepublish",
"_version": "npm run update-changelog",
"update-changelog": "VERSION=`node -p -e \"require('./package.json').version\"` bash -c 'read -p \"Update CHANGELOG.md for version $VERSION and press ENTER when done.\"' && git add CHANGELOG.md"
},
"atomTestRunner": "./spec/runner.js",
"devDependencies": {
"atom": "^1.0.0",
"atom-mocha-test-runner": "^0.3.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "~2.2.0",
"eslint-config-particle": "^1.0.1",
"eslint-plugin-mocha": "^4.3.0",
"eslint-plugin-react": "^6.8.0",
"fs-extra": "^1.0.0",
"html-element": "^2.1.1",
"mocha": "^3.2.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"temp": "^0.8.3"
},
"atomTranspilers": [
{
"transpiler": "atom-ts-transpiler",
"glob": "{!(node_modules)/**/,}*.ts?(x)",
"options": {
"cacheKeyFiles": [
"lib/yeoman/tsconfig.json"
],
"verbose": false
}
},
{
"glob": "{!(node_modules)/**/,}*.js",
"transpiler": "atom-babel6-transpiler"
}
]
}