-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "@janiscommerce/app-dates",
"version": "1.3.0",
"description": "Dates helper",
"main": "lib/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"prepare": "husky install",
"build-docs": "jsdoc2md --template template-readme.hbs --configure ./jsdoc2md.json --files lib/*.js > README.md",
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"test:ci": "export NODE_ENV=development; c8 --reporter=lcov --reporter=text mocha --exit --recursive tests/",
"coverage": "nyc npm test",
"validate:code": "npm run lint -- --fix && jest --collectCoverage"
},
"files": [
"lib/"
],
"types": "types/index.d.ts",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"c8": "^7.13.0",
"date-fns": "^4.1.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"sinon": "^15.0.1",
"typescript": "^5.6.2"
},
"keywords": [
"janis",
"apps",
"janiscommerce",
"Dates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/janis-commerce/app-dates.git"
},
"author": "Janis commerce",
"license": "ISC",
"bugs": {
"url": "https://github.com/janis-commerce/app-dates/issues"
},
"homepage": "https://github.com/janis-commerce/app-dates#readme",
"peerDependencies": {
"date-fns": "^4.1.0"
}
}