forked from noseglid/atom-build
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 2.88 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
113
114
115
116
117
118
119
120
{
"name": "buildium",
"version": "0.75.5",
"description": "Build your current project, directly from Atom",
"keywords": [
"build",
"compile",
"gulp",
"make",
"productivity"
],
"repository": "https://github.com/idleberg/atom-buildium",
"license": "MIT",
"main": "./lib/buildium",
"scripts": {
"build": "npm run clean && rollup --config",
"dev": "npm run start",
"clean": "rimraf ./lib",
"format": "prettier --write ./src ./styles",
"lint:js": "eslint ./src --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"start": "rollup --watch --config",
"test": "eslint .",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md,less}": "prettier --write"
},
"dependencies": {
"@atxm/developer-console": "^0.5.0",
"@iarna/toml": "^2.2.5",
"atom-package-deps": "^7.2.2",
"atom-space-pen-views": "^2.0.3",
"core-js": "^3.15.2",
"cosmiconfig": "^7.0.0",
"cross-spawn": "^7.0.3",
"cson-parser": "^4.0.8",
"js-yaml": "^4.0.0",
"json5": "^2.2.0",
"tree-kill": "^1.0.0",
"xregexp": "^5.0.1",
"xterm": "^2.9.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.2",
"@stylelint/prettier-config": "^2.0.0",
"@stylelint/remark-preset": "^2.0.0",
"atom-build-spec-helpers": "^0.4.0",
"eslint": "^7.31.0",
"husky": "^7.0.0",
"jsonlint": "^1.6.3",
"lint-staged": "^11.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"remark-cli": "^9.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.53.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.35.2",
"stylelint": "^13.13.1",
"temp": "^0.9.4"
},
"engines": {
"atom": ">=1.0.0"
},
"activationCommands": {
"atom-workspace": [
"build:confirm",
"build:error-match-first",
"build:error-match",
"build:no-confirm",
"build:refresh-targets",
"build:select-active-target",
"build:stop",
"build:toggle-panel",
"build:trigger"
]
},
"activationHooks": [
"core:loaded-shell-environment"
],
"consumedServices": {
"builder": {
"versions": {
"^2.0.0": "consumeBuilder"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"busy-signal": {
"versions": {
"^1.0.0": "consumeBusySignal"
}
},
"linter-indie": {
"versions": {
"1.0.0": "consumeLinterRegistry"
}
}
},
"package-deps": [
{
"name": "busy-signal"
}
]
}