forked from retextjs/retext-quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "retext-quotes",
"version": "2.0.0",
"description": "Check quote and apostrophe usage",
"license": "MIT",
"keywords": [
"quote",
"apostrophe",
"smart",
"dumb",
"straight",
"retext"
],
"repository": "https://github.com/wooorm/retext-quotes",
"bugs": "https://github.com/wooorm/retext-quotes/issues",
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
],
"files": [
"index.js"
],
"dependencies": {
"nlcst-to-string": "^2.0.0",
"unist-util-is": "^2.0.0",
"unist-util-visit": "^1.1.0"
},
"devDependencies": {
"browserify": "^14.1.0",
"esmangle": "^1.0.1",
"nyc": "^10.0.0",
"remark-cli": "^3.0.0",
"remark-preset-wooorm": "^3.0.0",
"retext": "^5.0.0",
"tape": "^4.0.0",
"xo": "^0.18.0"
},
"scripts": {
"build-md": "remark . -qfo",
"build-bundle": "browserify index.js --bare -s retextQuotes > retext-quotes.js",
"build-mangle": "esmangle retext-quotes.js > retext-quotes.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run build && npm run lint && npm run test-coverage"
},
"xo": {
"space": true,
"esnext": false,
"ignores": [
"retext-quotes.js"
]
},
"remarkConfig": {
"plugins": ["preset-wooorm"]
}
}