-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "calci-lib",
"version": "0.0.0",
"description": "Sample calculator library",
"main": "lib/index.js",
"files": [
"/dist"
],
"scripts": {
"commit": "git-cz",
"test": "jest --coverage",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/pritam001/calci-lib.git"
},
"keywords": [
"Javascript",
"Library",
"Sample",
"Medium"
],
"author": "Pritam Sarkar <001pritam2012@gmail.com> (https://github.com/pritam001)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pritam001/calci-lib/issues"
},
"homepage": "https://github.com/pritam001/calci-lib#readme",
"dependencies": {
"calc-percent": "1.0.1"
},
"devDependencies": {
"codecov.io": "0.1.6",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.1.0",
"jest": "25.1.0",
"semantic-release": "^17.0.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}