-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "functional-jargon-python",
"version": "1.0.0",
"description": "Functional Programming jargons explained with Python",
"scripts": {
"test": "remark -f ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dry-python/functional-jargon-python.git"
},
"keywords": [
"functional-programming",
"jargon",
"python"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dry-python/functional-jargon-python/issues"
},
"homepage": "https://github.com/dry-python/functional-jargon-python#readme",
"dependencies": {
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-lint": "^8.0.0",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-no-empty-url": "^2.0.1",
"remark-lint-no-html": "^2.0.1",
"remark-lint-no-tabs": "^2.0.1",
"remark-preset-lint-consistent": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"remark-validate-links": "^10.0.4"
},
"remarkConfig": {
"plugins": [
"lint",
"lint-no-tabs",
"lint-no-html",
"lint-no-empty-url",
"lint-code-block-style",
"validate-links",
"remark-preset-lint-recommended",
[
"lint-list-item-indent",
"space"
],
"preset-lint-consistent"
]
}
}