-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 857 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 857 Bytes
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
{
"name": "website-minifier",
"main": "./lib/website-minifier",
"version": "1.4.0",
"description": "An HTML, CSS, and JS minifier for Atom",
"scripts": {
"test": "mocha --compilers js:babel-core/register spec/"
},
"keywords": [
"HTML",
"CSS",
"JS",
"minifier",
"minify",
"website"
],
"activationCommands": {
"atom-workspace": "website-minifier:minify"
},
"repository": "https://github.com/bossley9/website-minifier",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"babel": {
"presets": [
[
"babel-preset-env"
]
]
},
"dependencies": {
"atom": "^1.1.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"fs": "0.0.1-security",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}