-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "remark-lint-alphabetize-lists",
"version": "3.0.0",
"description": "Checks that all list items are in alphabetical order",
"author": "Victor Felder <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/vhf/remark-lint-alphabetize-lists.git"
},
"license": "MIT",
"dependencies": {
"mdast-util-to-string": "^1.0.0",
"unified-lint-rule": "^1.0.5",
"unist-util-visit": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.3.17",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.3.13",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"remark": "^12.0.0",
"remark-cli": "^5.0.0",
"remark-lint": "^7.0.0",
"tape": "^4.6.3"
},
"scripts": {
"build-md": "remark . -qfo",
"build-lib": "babel lib -d dist",
"build": "npm run build-md && npm run build-lib",
"lint": "eslint .",
"test-api": "node test",
"test": "npm run build && npm run lint && npm run test-api"
},
"bugs": {
"url": "https://github.com/vhf/remark-lint-alphabetize-lists/issues"
},
"homepage": "https://github.com/vhf/remark-lint-alphabetize-lists#readme",
"main": "dist/alphabetical-list-items.js"
}