This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
{
"name": "remark-lint-list-item-punctuation",
"version": "2.0.1",
"description": "Checks that all list items ends with certain punctuation",
"author": "Nikita Tsyrlin <nstsyrlin@gmail.com>",
"contributors": [
"Nikita Tsyrlin <nstsyrlin@gmail.com>",
"Nikita Sobolev <mail@sobolevn.me>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wemake-services/remark-lint-list-item-punctuation.git"
},
"files": [
"lib",
"dist",
"test"
],
"license": "MIT",
"dependencies": {
"remark": "^5.0.0",
"remark-lint": "^3.2.1",
"object.defaults": "^0.3.0",
"mdast-util-to-string": "^1.0.0",
"unist-util-visit": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.3.17",
"babel-eslint": "^5.0.0-beta6",
"babel-preset-es2015": "^6.3.13",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.11.3",
"istanbul": "^0.4.1",
"jscs": "^3.0.4",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"publish-please": "^2.1.4"
},
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js lib -d dist",
"coveralls": "npm test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "npm run build && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec",
"lint-style": "./node_modules/jscs/bin/jscs --reporter inline .",
"lint-code": "./node_modules/eslint/bin/eslint.js lib/* test/*",
"lint": "npm run lint-code && npm run lint-style",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"bugs": {
"url": "https://github.com/wemake-services/remark-lint-list-item-punctuation/issues"
},
"homepage": "https://github.com/wemake-services/remark-lint-list-item-punctuation",
"main": "dist/list-item-punctuation.js"
}