forked from get-alex/alex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.57 KB
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
{
"name": "alex",
"version": "3.0.0",
"description": "Catch insensitive, inconsiderate writing",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wooorm/alex.git"
},
"bugs": "https://github.com/wooorm/alex/issues",
"homepage": "http://alexjs.com",
"alex": {
"allow": ["butt"]
},
"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>",
"Conor Hastings <conor@socialtables.com>",
"Alex Gleason <alex@alexgleason.me>",
"Ansel Halliburton <github@anseljh.com>"
],
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"cli.js"
],
"dependencies": {
"bail": "^1.0.0",
"get-stdin": "^5.0.0",
"glob": "^7.0.0",
"globby": "^4.0.0",
"meow": "^3.3.0",
"minimatch": "^3.0.0",
"remark": "^4.0.0",
"remark-message-control": "^2.0.0",
"remark-retext": "^1.1.0",
"retext": "^2.0.0",
"retext-english": "^1.0.0",
"retext-equality": "^2.3.0",
"retext-profanities": "^2.0.0",
"to-vfile": "^1.0.0",
"update-notifier": "^0.7.0",
"vfile": "^1.1.0",
"vfile-find-down": "^1.0.0",
"vfile-find-up": "^1.0.0",
"vfile-reporter": "^1.2.0",
"vfile-sort": "^1.0.0"
},
"devDependencies": {
"ava": "^0.14.0",
"browserify": "^13.0.0",
"eslint": "^2.0.0",
"esmangle": "^1.0.1",
"jscs": "^3.0.0",
"jscs-jsdoc": "^2.0.0",
"remark-comment-config": "^3.0.0",
"remark-github": "^4.0.1",
"remark-lint": "^3.0.0",
"remark-toc": "^3.0.0",
"remark-validate-links": "^3.0.0",
"nyc": "^6.0.0"
},
"scripts": {
"build-md": "remark . --quiet --frail",
"build-bundle": "browserify index.js -s alex > alex.js",
"build-mangle": "esmangle alex.js > alex.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint-api": "eslint .",
"lint-style": "jscs --reporter inline .",
"lint-text": "./cli.js . --why",
"lint": "npm run lint-api && npm run lint-style && npm run lint-text",
"test-api": "ava",
"test-coverage": "nyc ava",
"test": "npm run build && npm run lint && npm run test-coverage"
}
}