forked from Shopify/retext-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "retext-shopify",
"version": "0.1.0",
"description": "Warn about Shopify style guide violations with Retext",
"license": "MIT",
"private": true,
"files": [
"index.js",
"data/index.json"
],
"repository": {
"type": "git",
"url": "https://github.com/Shopify/retext-shopify.git"
},
"bugs": "https://github.com/Shopify/retext-shopify/issues",
"author": "Titus Wormer <[email protected]> (http://wooorm.com)",
"dependencies": {
"array-differ": "^1.0.0",
"nlcst-search": "^1.3.0",
"nlcst-to-string": "^1.1.0",
"object-keys": "^1.0.9",
"quotation": "^1.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"eslint": "^1.0.0",
"esmangle": "^1.0.0",
"istanbul": "^0.4.0",
"jscs": "^2.0.0",
"jscs-jsdoc": "^1.0.0",
"remark": "^3.0.0",
"remark-comment-config": "^2.0.2",
"remark-github": "^3.0.0",
"remark-lint": "^2.0.2",
"remark-slug": "^3.0.1",
"remark-validate-links": "^2.0.2",
"retext": "^1.0.0",
"tape": "^4.0.0",
"vfile": "^1.2.0",
"vfile-reporter": "^1.5.0"
},
"scripts": {
"build-md": "remark . --quiet --frail",
"build-bundle": "browserify index.js --bare -s retextSimplify > retext-simplify.js",
"build-mangle": "esmangle retext-simplify.js > retext-simplify.min.js",
"build": "npm run build-md && npm run build-bundle && npm run build-mangle",
"lint-api": "eslint .",
"lint-style": "jscs --reporter inline .",
"lint": "npm run lint-api && npm run lint-style",
"test-api": "node test.js",
"test-coverage": "istanbul cover test.js",
"test": "npm run build && npm run lint && npm run test-coverage"
}
}