forked from remarkjs/remark-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.14 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
{
"private": true,
"license": "MIT",
"repository": "https://github.com/remarkjs/remark-lint",
"bugs": "https://github.com/remarkjs/remark-lint/issues",
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)",
"Stephan Schneider <[email protected]>",
"Linda_pp <[email protected]>",
"Merlijn Vos <[email protected]>",
"John Vandenberg <[email protected]>",
"Michael Mior <[email protected]>",
"Nikita Sobolev <[email protected]>",
"Patrick Gilday <[email protected]>",
"Philipp Burckhardt <[email protected]>",
"Piotr Kuczynski <[email protected]>",
"Richard Littauer <[email protected]>",
"Tony Brix <[email protected]>",
"YJ Yang <[email protected]>",
"Yoshua Wuyts <[email protected]>",
"Emeric Fermas <[email protected]>",
"Victor Felder <[email protected]>",
"Yash Nisar <[email protected]>",
"Ben Balter <[email protected]>",
"Сковорода Никита Андреевич <[email protected]>",
"Burak Yiğit Kaya <[email protected]>",
"Danny Arnold <[email protected]>",
"David Clark <[email protected]>",
"Joaquín Serna <[email protected]>"
],
"devDependencies": {
"browserify": "^16.0.0",
"chalk": "^2.0.0",
"dox": "^0.9.0",
"lerna": "^3.0.0",
"mdast-zone": "^3.0.0",
"nyc": "^13.0.0",
"parse-author": "^2.0.0",
"prettier": "^1.12.1",
"remark": "^10.0.0",
"remark-cli": "^6.0.0",
"remark-comment-config": "^5.0.0",
"remark-github": "^7.0.0",
"remark-toc": "^5.0.0",
"remark-validate-links": "^7.0.0",
"strip-indent": "^2.0.0",
"tape": "^4.6.0",
"tinyify": "^2.4.3",
"to-vfile": "^5.0.0",
"trim": "0.0.1",
"unist-builder": "^1.0.2",
"unist-util-remove-position": "^1.1.0",
"vfile-reporter": "^5.0.0",
"xo": "^0.23.0"
},
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
"format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
"generate:presets": "node script/build-presets",
"generate:rules": "node script/build-rules",
"generate": "npm run generate:presets && npm run generate:rules",
"build:bundle": "browserify packages/remark-lint -s remarkLint > remark-lint.js",
"build:mangle": "browserify packages/remark-lint -s remarkLint -p tinyify > remark-lint.min.js",
"build": "npm run build:bundle && npm run build:mangle",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run generate && npm run format && npm run build && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"guard-for-in": "off",
"no-eq-null": "off",
"eqeqeq": "off"
},
"ignores": [
"remark-lint.js"
]
}
}