-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "calendrica",
"version": "2.1.0",
"description": "Javascript Implementation of Calendrical Calculations.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"precommit": "npm run lint && npm run test",
"prepare": "husky install",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sarabveer/calendrica-js.git"
},
"author": "Sarabveer Singh <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Sarabveer/calendrica-js/issues"
},
"homepage": "https://github.com/Sarabveer/calendrica-js#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-require-sort": "^1.2.2",
"husky": "^7.0.4",
"jest": "^27.4.7",
"release-it": "^15.5.1"
},
"keywords": [
"calendar",
"calendars",
"calendrical-calculations",
"astronomical-algorithms"
],
"directories": {
"lib": "src",
"test": "test"
}
}