-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.52 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
{
"name": "eslint.cn",
"version": "1.0.0",
"private": true,
"description": "This contains the code running on eslint.org.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"serve": "bundle exec jekyll serve --config _config.yml,_config.dev.yml",
"build": "browserify js/app/parser/index.js > js/app/parser/index.built.js",
"start": "bundle exec jekyll serve --config _config.yml,_config.dev.yml",
"lint": "eslint js/app/ --ext=.js,.jsx",
"test": "npm run lint",
"less": "lessc styles/less/main.less styles/main.css -x --source-map=styles/main.css.map",
"less2": "lessc styles/less/mixed.less styles/mixed.css -x --source-map=styles/mixed.css.map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eslint/eslint.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eslint/eslint.github.io/issues"
},
"homepage": "https://github.com/eslint/eslint.github.io#readme",
"dependencies": {
"moment": "^2.24.0"
},
"devDependencies": {
"@octokit/rest": "^16.16.0",
"bootstrap": "^3.4.1",
"browserify": "^16.2.3",
"eslint": "^4.5.0",
"eslint-config-eslint": "^4.0.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"json-loader": "^0.5.2",
"less": "^3.9.0",
"node-fetch": "^2.3.0",
"node-libs-browser": "^0.5.2"
}
}