-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
{
"name": "jalali-plugin-dayjs",
"version": "1.1.4",
"description": "Persian (Jalali, Khorshidi) Plugin for Day.js",
"main": "dist/jalaliday.cjs.min.js",
"web": "dist/jalaliday.umd.min.js",
"module": "dist/jalaliday.esm.js",
"jsnext:main": "dist/jalaliday.esm.js",
"types": "index.d.ts",
"scripts": {
"test": "yarn build && jest",
"lint": "eslint src/* test/*",
"build": "bili",
"release": "standard-version $* && git push --follow-tags && npm publish",
"prepublishOnly": "npm run build"
},
"pre-commit": [
"lint"
],
"jest": {
"testEnvironment": "node",
"roots": [
"test"
],
"testRegex": "test/(.*?/)?.*test.js$",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
],
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
},
"keywords": [
"dayjs",
"date",
"time",
"immutable",
"moment",
"jalali"
],
"author": "sssajjad007",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sssajjad007/jalali-plugin-dayjs"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"bili": "^4.8.1",
"codecov": "^3.5.0",
"dayjs": "^1.11.11",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"jest": "^24.9.0",
"mockdate": "^2.0.5",
"pre-commit": "^1.2.2",
"standard-version": "7.0.0"
}
}