forked from unifiedjs/unified-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.13 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
{
"name": "unified-engine",
"version": "6.0.1",
"description": "Engine to process multiple files with unified",
"license": "MIT",
"keywords": [
"unified",
"processor",
"engine"
],
"repository": "unifiedjs/unified-engine",
"bugs": "https://github.com/unifiedjs/unified-engine/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"main": "lib/index.js",
"files": [
"lib/"
],
"dependencies": {
"concat-stream": "^1.5.1",
"debug": "^3.1.0",
"fault": "^1.0.0",
"fn-name": "^2.0.1",
"glob": "^7.0.3",
"ignore": "^3.2.0",
"is-empty": "^1.0.0",
"is-hidden": "^1.0.1",
"is-object": "^1.0.1",
"js-yaml": "^3.6.1",
"load-plugin": "^2.0.0",
"parse-json": "^4.0.0",
"to-vfile": "^4.0.0",
"trough": "^1.0.0",
"unist-util-inspect": "^4.1.2",
"vfile-reporter": "^5.0.0",
"vfile-statistics": "^1.1.0",
"x-is-string": "^0.1.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"nyc": "^11.0.0",
"prettier": "^1.12.1",
"remark-cli": "^5.0.0",
"remark-preset-wooorm": "^4.0.0",
"strip-ansi": "^4.0.0",
"tape": "^4.4.0",
"unified": "^7.0.0",
"vfile-reporter-json": "^1.0.1",
"vfile-reporter-pretty": "^1.0.1",
"xo": "^0.21.0"
},
"scripts": {
"format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test/index.js",
"test": "npm run format && npm run test-coverage"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"no-var": "off",
"prefer-arrow-callback": "off",
"object-shorthand": "off",
"complexity": "off",
"guard-for-in": "off"
}
}
}