-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 911 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
{
"name": "slopeer",
"version": "1.0.0",
"description": "App for browsing, saving and creating rock climbing routes.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guillemgarciagomez/slopeer.git"
},
"author": "Guillem Garcia",
"license": "ISC",
"bugs": {
"url": "https://github.com/guillemgarciagomez/slopeer/issues"
},
"homepage": "https://github.com/guillemgarciagomez/slopeer#readme",
"devDependencies": {
"cz-changelog": "^1.0.1",
"eslint": "^7.17.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-load-plugins": "^2.0.6",
"husky": "^4.3.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "gulp lint"
}
},
"dependencies": {}
}