-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 912 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
{
"name": "freecodecampproject",
"version": "1.0.0",
"description": "freeCodeCamp project demo",
"main": "index.js",
"scripts": {
"test": "test",
"commit": "commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/S1ngS1ng/freeCodeCampProject.git"
},
"keywords": [
"freeCodeCamp",
"fcc",
"project"
],
"author": "S1ngS1ng",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/S1ngS1ng/freeCodeCampProject/issues"
},
"homepage": "https://github.com/S1ngS1ng/freeCodeCampProject#readme",
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@commitlint/prompt-cli": "^7.6.1",
"husky": "^1.3.1",
"pug": "^2.0.4",
"sass": "^1.25.0",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}