-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "cookiepy",
"version": "1.0.0",
"description": ".. Logo EY",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "remark . --quiet --frail",
"format": "remark . --output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erik-ingwersen-ey/cookiepy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/erik-ingwersen-ey/cookiepy/issues"
},
"homepage": "https://github.com/erik-ingwersen-ey/cookiepy#readme",
"devDependencies": {
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-list-item-indent": "^3.1.1",
"remark-lint-strong-marker": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"remark-toc": "^8.0.1"
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
"space"
],
[
"remark-lint-emphasis-marker",
"*"
],
[
"remark-lint-strong-marker",
"*"
]
]
}
}