forked from cakecatz/flex-toolbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "flex-tool-bar",
"main": "./lib/flex-tool-bar",
"version": "0.14.0",
"description": "Easily Customizable ToolBar for Atom",
"repository": "https://github.com/cakecatz/flex-toolbar",
"license": "MIT",
"keywords": [
"toolbar",
"tool-bar"
],
"engines": {
"atom": ">=0.188.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "^4.6.1",
"change-case": "^3.0.1",
"chokidar": "^2.0.0",
"cson": "^4.1.0",
"fs-plus": "^3.0.1",
"json5": "^0.5.1",
"space-pen": "^5.1.2",
"glob-to-regexp": "0.3.0"
},
"package-deps": [
"tool-bar"
],
"consumedServices": {
"tool-bar": {
"versions": {
"^0 || ^1": "consumeToolBar"
}
}
},
"atomTestRunner": "atom-jasmine2-test-runner",
"scripts": {
"test": "atom --test ./spec && npm run lint",
"lint": "remark . & coffeelint . & eslint ."
},
"devDependencies": {
"atom-jasmine2-test-runner": "^1.3.1",
"coffeelint": "^2.0.7",
"eslint": "^4.15.0",
"remark-cli": "^4.0.0",
"remark-preset-lint-recommended": "^3.0.1"
}
}