-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "awesome-squarespace",
"version": "1.0.0",
"description": "A curated list of resources for Squarespace development.",
"author": "Jeff Nelson <rustyangel@gmail.com> (http://tidaltheory.co/)",
"config": {
"commitizen": {
"path": "emoji-cz",
"emoji-cz": {
"types": {
"Content": {
"emoji": "✏️",
"name": "Content",
"description": "Content edits or additions."
},
"Dependency": {
"emoji": "📦",
"name": "Dependency",
"description": "Adding or up/downgrading project dependencies."
},
"First": {
"emoji": "🎉",
"name": "Init",
"description": "Initial commit."
}
},
"format": "[emoji] [subject]"
}
}
},
"devDependencies": {
"commitizen": "^2.9.6",
"emoji-cz": "^0.3.0",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"remark-cli": "^4.0.0",
"remark-preset-github": "0.0.7"
},
"keywords": ["squarespace", "awesome", "awesome-list"],
"license": "CC0-1.0",
"lint-staged": {
"*.md": ["remark . -qfo", "git add"]
},
"remarkConfig": {
"plugins": ["preset-github"]
},
"repository": "https://github.com/stormwarning/awesome-squarespace",
"scripts": {
"cz": "git-cz",
"lint": "remark . -qfo",
"precommit": "lint-staged && npm test",
"test": "npm run lint"
}
}