-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 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
45
46
47
48
49
50
51
52
{
"name": "dayjs-plugin-utc",
"version": "0.1.1",
"description": "utc plugin for dayjs",
"main": "dist/dayjs-plugin-utc.min.js",
"keywords": [
"dayjs",
"plugin"
],
"author": "guisturdy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guisturdy/dayjs-plugin-utc.git"
},
"scripts": {
"test": "jest",
"build": "webpack -p",
"lint": "eslint src/* test/*"
},
"pre-commit": [
"lint"
],
"jest": {
"roots": [
"test"
],
"testRegex": "test/(.*?/)?.*test.js$",
"testURL": "http://localhost",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*"
]
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.1",
"dayjs": "^1.8.15",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"jest": "^24.8.0",
"mockdate": "^2.0.2",
"moment": "^2.22.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
}
}