forked from idleberg/Creative-Commons-Markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 979 Bytes
/
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
{
"name": "cc-md",
"version": "0.4.1",
"description": "Markdown-formatted Creative Commons licenses",
"author": "idleberg",
"license": "CC0-1.0",
"files": [
"1.0/",
"2.0/",
"2.5/",
"3.0/",
"4.0/",
"legacy/",
"LICENSE",
"readme.markdown"
],
"scripts": {
"lint": "npm run test",
"test": "remark -u lint ./**/*.markdown ./readme.markdown"
},
"keywords": [
"markdown",
"creative",
"commons",
"licenses",
"cc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/idleberg/Creative-Commons-Markdown.git"
},
"bugs": {
"url": "https://github.com/idleberg/Creative-Commons-Markdown/issues"
},
"homepage": "https://github.com/idleberg/Creative-Commons-Markdown#readme",
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1"
},
"lint-staged": {
"*.{md|markdown}": "remark -u lint"
}
}