forked from lint-md/lint-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "lint-md",
"version": "0.0.8",
"description": "Cli tool to lint your markdown file for Chinese.",
"main": "lib/index.js",
"bin": {
"lint-md": "bin/index.js"
},
"scripts": {
"test": "jest --no-cache",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "npm run build && node ./bin/index.js tests README.md -c tests/.lintmdrc",
"build": "babel src -d lib"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"testRegex": "/__tests__/.*\\.spec\\.jsx?$"
},
"keywords": [
"lint",
"markdown",
"lint-md",
"ast-plugin"
],
"dependencies": {
"ast-plugin": "^0.0.5",
"commander": "^2.19.0",
"glob": "^7.1.3",
"ink": "^0.5.1",
"lodash": "^4.17.11",
"remark-parse": "^6.0.2",
"unified": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-version": "^0.2.3",
"coveralls": "^3.0.2",
"jest": "^23.6.0"
},
"author": "hustcc",
"license": "MIT",
"bugs": {
"url": "https://github.com/hustcc/lint-md/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hustcc/lint-md.git"
},
"homepage": "https://github.com/hustcc/lint-md#readme"
}