-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "remark-lint-heading-whitespace",
"version": "1.0.0",
"description": "Prevents non-breaking spaces from breaking headings",
"author": "Victor Felder <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/vhf/remark-lint-heading-whitespace.git"
},
"license": "MIT",
"dependencies": {
"mdast-util-to-string": "^1.0.4",
"unified-lint-rule": "^1.0.2",
"unist-util-visit": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"remark": "^9.0.0",
"remark-cli": "^5.0.0",
"remark-lint": "^6.0.1",
"tape": "^4.8.0"
},
"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-heading-whitespace/issues"
},
"homepage": "https://github.com/vhf/remark-lint-heading-whitespace#readme",
"main": "dist/heading-whitespace-lint.js"
}