-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nanakshahi",
"version": "8.2.1",
"description": "A JavaScript Library to get Nanakshahi Dates and Gurpurabs",
"main": "dist/index.min.js",
"unpkg": "dist/index.min.js",
"runkitExampleFilename": "example.js",
"scripts": {
"test": "jest --coverage",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack",
"build-docs": "jsdoc2md --partial docs/sig-name.hbs --template docs/README.hbs lib/*.js > README.md && markdown-toc -i README.md",
"lint": "eslint .",
"precommit": "npm run lint && npm run build-docs && git add --renormalize README.md",
"release": "release-it",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sarabveer/nanakshahi-js.git"
},
"author": "Sarabveer Singh <me@sarabveer.me>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Sarabveer/nanakshahi-js/issues"
},
"homepage": "https://github.com/Sarabveer/nanakshahi-js#readme",
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"babel-loader": "^9.1.3",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-require-sort": "^1.3.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.0",
"markdown-toc": "^1.2.0",
"release-it": "^16.1.5",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
},
"release-it": {
"hooks": {
"before:release": "npm run build-dev && npm run build"
},
"github": {
"release": true,
"assets": [
"dist/index.js",
"dist/index.min.js"
]
},
"git": {
"commitMessage": "chore: release v${version}"
}
},
"keywords": [
"nanakshahi",
"sikhi",
"sikhism",
"sikh",
"sikh-holidays",
"nanakshahi-api",
"bikrami",
"gurpurab",
"gurpurabs",
"gurmukhi"
],
"directories": {
"lib": "lib"
}
}