-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 900 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
{
"name": "@visbot/awesome-avs",
"version": "1.0.2",
"license": "CC0",
"description": "A curated list about Winamp's AVS plug-in",
"author": {
"name": "@visbot",
"url": "http://github.com/visbot"
},
"homepage": "https://visbot.github.io/awesome-avs/",
"bugs": {
"url": "https://github.com/visbot/awesome-avs/blob/master/contributing.md"
},
"main": "readme.md",
"scripts": {
"lint": "markdownlint ./*.md",
"lint:fix": "markdownlint --fix ./*.md",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visbot/awesome-avs.git"
},
"keywords": [
"awesome",
"awesome-list",
"winamp",
"winamp avs",
"avs",
"visualization"
],
"devDependencies": {
"husky": "^3.1.0",
"markdownlint-cli": "^0.19.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}