-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathpackage.json
121 lines (121 loc) · 2.84 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "alex",
"version": "7.1.0",
"description": "Catch insensitive, inconsiderate writing",
"license": "MIT",
"repository": "https://github.com/get-alex/alex",
"bugs": "https://github.com/get-alex/alex/issues",
"homepage": "https://alexjs.com",
"keywords": [
"cli-app",
"cli",
"bin",
"alex",
"equal",
"race",
"religion",
"sex",
"orientation",
"identity",
"gender",
"sensitive",
"insensitive",
"neutral",
"writing",
"language",
"english"
],
"author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
"Sindre Sorhus <sindresorhus@gmail.com>",
"Shinnosuke Watanabe <snnskwtnb@gmail.com>",
"Alex Gleason <alex@alexgleason.me>",
"Ansel Halliburton <github@anseljh.com>",
"John-David Dalton <john.david.dalton@gmail.com>",
"Conor Hastings <conor@socialtables.com>",
"Jen Weber <j@jenweber.me>"
],
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"filter.js",
"cli.js"
],
"dependencies": {
"meow": "^5.0.0",
"rehype-parse": "^6.0.0",
"rehype-retext": "^2.0.1",
"remark-frontmatter": "^1.1.0",
"remark-message-control": "^5.0.0",
"remark-parse": "^7.0.0",
"remark-retext": "^3.0.0",
"retext-english": "^3.0.0",
"retext-equality": "~4.1.0",
"retext-profanities": "~5.0.0",
"unified": "^8.0.0",
"unified-diff": "^3.0.0",
"unified-engine": "^7.0.0",
"update-notifier": "^3.0.0",
"vfile": "^4.0.0",
"vfile-reporter": "^6.0.0",
"vfile-sort": "^2.0.0"
},
"devDependencies": {
"ava": "^2.0.0",
"browserify": "^16.0.0",
"execa": "^2.0.0",
"nyc": "^14.0.0",
"prettier": "^1.0.0",
"remark-cli": "^7.0.0",
"remark-preset-wooorm": "^6.0.0",
"tinyify": "^2.0.0",
"xo": "^0.25.0"
},
"scripts": {
"format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
"build-bundle": "browserify . -s alex > alex.js",
"build-mangle": "browserify . -s alex -p tinyify > alex.min.js",
"build": "npm run build-bundle && npm run build-mangle",
"test-api": "ava",
"test-coverage": "nyc --reporter lcov ava",
"test": "npm run format && npm run build && npm run test-coverage"
},
"alex": {
"allow": [
"butt"
]
},
"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": {
"ava/prefer-async-await": "off"
},
"ignores": [
"alex.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}