forked from Shopify/rorybot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.54 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
{
"name": "rorybot",
"version": "1.0.0",
"description": "Catch writing that doesn't follow Shopify style guide rules",
"license": "MIT",
"homepage": "https://github.com/Shopify/rorybot",
"repository": {
"type": "git",
"url": "https://github.com/Shopify/rorybot"
},
"bugs": "https://github.com/Shopify/rorybot/issues",
"author": {
"name": "Adam Hollett",
"email": "adam.hollett@shopify.com",
"url": "http://www.shopify.com"
},
"contributors": [
{
"name" : "Jeremy Hanson-Finger",
"email" : "jeremy.hansonfinger@shopify.com"
},
{
"name" : "Adam Hollett",
"email" : "adam.hollett@shopify.com"
},
{
"name" : "Zachary Kain",
"email" : "zachary.kain@shopify.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": "^6.0.1",
"globby": "^4.0.0",
"meow": "^3.3.0",
"minimatch": "^3.0.0",
"remark": "^3.0.0",
"remark-message-control": "^1.0.1",
"remark-retext": "^1.1.0",
"retext": "^1.0.0",
"retext-english": "^1.0.0",
"retext-shopify": "https://github.com/Shopify/retext-shopify.git",
"retext-usage": "https://github.com/admhlt/retext-usage.git",
"retext-simplify": "^1.1.0",
"retext-equality": "^2.0.0",
"retext-profanities": "^1.0.0",
"to-vfile": "^1.0.0",
"update-notifier": "^0.6.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.11.0",
"browserify": "^13.0.0",
"eslint": "^1.0.0",
"esmangle": "^1.0.1",
"jscs": "^2.0.0",
"jscs-jsdoc": "^1.0.0",
"remark-comment-config": "^2.0.0",
"remark-github": "^4.0.0",
"remark-lint": "^2.0.0",
"remark-toc": "^2.0.0",
"remark-validate-links": "^2.0.0",
"nyc": "^5.5.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-api && npm run lint-style && npm run test-coverage"
}
}