-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "retext-assuming",
"version": "1.0.0",
"description": "Check for unhelpful ‘assuming’ phrases such as ‘just’, ‘simply’ or ‘obviously’ with retext",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"test": "tape test.js",
"lint": "xo",
"bundle": "browserify index.js --bare -s retextAssuming > retext-assuming.js",
"minify": "uglifyjs retext-assuming.js --compress --mangle --output retext-assuming.min.js",
"build": "npm run bundle && npm run minify"
},
"keywords": [
"retext",
"plugin",
"phrase",
"unhelpful",
"documentation",
"inclusive"
],
"author": "David Hund <david@valuedstandards.com> (https://valuedstandards.com)",
"repository": "davidhund/retext-assuming",
"bugs": "https://github.com/davidhund/retext-assuming/issues",
"license": "MIT",
"files": [
"index.js",
"phrases.json"
],
"dependencies": {
"lodash": "^4.17.5",
"nlcst-search": "^1.4.2",
"nlcst-to-string": "^2.0.1",
"quotation": "^1.1.0",
"unist-util-find-before": "^2.0.1"
},
"devDependencies": {
"browserify": "^14.5.0",
"retext": "^5.0.0",
"tape": "^4.8.0",
"to-vfile": "^2.1.2",
"uglify-js": "^3.1.6",
"vfile-reporter": "^4.0.0",
"xo": "^0.18.2"
},
"xo": {
"esnext": false,
"ignores": [
"retext-assuming.js"
]
}
}