forked from atom/flight-manual.atom.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 875 Bytes
/
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
{
"description": "Atom docs",
"private": true,
"dependencies": {
"gulp": "^4.0.0",
"gulp-coffee": "^2.3.1",
"gulp-concat": "^2.6.0",
"gulp-connect": "5.5.0",
"gulp-if": "^2.0.0",
"gulp-minify-css": "^1.2.1",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.0.4",
"gulp-uglify": "^1.4.2",
"js-yaml": "^3.4.3"
},
"scripts": {
"clean": "rm -rf output/ tmp/",
"gulp": "gulp"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atom/docs.git"
},
"engines": {
"node": ">=8.0.0 <9.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"gulp-babel": "^6.1.2"
},
"standard": {
"ignore": [
"javascripts/search_worker.js"
],
"parser": "babel-eslint",
"globals": [
"$",
"importScripts",
"lunr",
"Worker"
]
}
}