forked from remarkjs/remark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
{
"private": true,
"license": "MIT",
"homepage": "http://remark.js.org",
"repository": "https://github.com/remarkjs/remark",
"bugs": "https://github.com/remarkjs/remark/issues",
"devDependencies": {
"bail": "^1.0.0",
"browserify": "^16.0.0",
"bundle-collapser": "^1.3.0",
"camelcase": "^5.0.0",
"chalk": "^2.0.0",
"clone": "^2.0.0",
"common-shakeify": "^0.5.0",
"escodegen": "^1.7.0",
"esprima": "^4.0.0",
"execa": "^0.10.0",
"extend": "^3.0.0",
"lerna": "^2.0.0",
"mdast-util-assert": "^1.0.0",
"mdast-util-compact": "^1.0.0",
"mdast-zone": "^3.0.1",
"nyc": "^12.0.0",
"remark-preset-wooorm": "^4.0.0",
"tape": "^4.5.1",
"tinyify": "^2.4.3",
"uglify-js": "^3.0.28",
"unist-builder": "^1.0.2",
"unist-util-remove-position": "^1.1.0",
"unist-util-visit": "^1.1.0",
"vfile": "^3.0.0",
"wcwidth": "^1.0.1",
"xo": "^0.22.0"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build-md": "packages/remark-cli/cli.js . -qfo",
"build-bundle": "browserify packages/remark -s remark > remark.js",
"build-mangle": "browserify packages/remark -s remark -p tinyify > remark.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
"test-api": "node test/api",
"test-api-extensive": "TEST_EXTENDED=true node test/api",
"test-cli": "node test/cli.js",
"test-coverage": "nyc --reporter lcov tape test",
"test": "npm run build && npm run lint && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"xo": {
"space": true,
"esnext": false,
"rules": {
"import/no-unassigned-import": "off",
"unicorn/prefer-type-error": "off",
"unicorn/escape-case": "off",
"eqeqeq": "off",
"guard-for-in": "off",
"max-depth": "off",
"complexity": "off",
"no-eq-null": "off"
},
"ignores": [
"remark.js"
]
},
"remarkConfig": {
"plugins": [
"./script/list-of-methods",
"preset-wooorm"
]
}
}