forked from babel/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "babel.github.io",
"private": true,
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"start": "make serve",
"build": "make build",
"lint": "eslint --ext md docs",
"test": "remark _posts docs _includes README.md --quiet"
},
"remarkConfig": {
"quiet": true,
"presets": [
"lint-recommended"
],
"plugins": {
"remark-lint": {
"list-item-bullet-indent": false,
"list-item-indent": "space",
"no-blockquote-without-caret": false,
"no-duplicate-headings-in-section": true,
"no-empty-url": true,
"no-literal-urls": false,
"no-shortcut-reference-link": false,
"no-undefined-references": false
}
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^7.1.1",
"bootstrap-sass": "^3.3.1",
"eslint": "^3.15.0",
"eslint-config-babel": "^6.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-markdown": "^1.0.0-beta.3",
"remark-cli": "^2.1.0",
"remark-lint": "^5.2.0",
"remark-preset-lint-recommended": "^1.0.0"
}
}