-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.84 KB
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
{
"name": "react-dayjs",
"version": "0.3.2",
"description": "React component for the dayjs date library.",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && webpack -p",
"clean": "rimraf ./dist/index.js",
"lint": "eslint source/*",
"serve": "webpack -p --watch",
"test": "jest",
"test:watch": "jest --watch",
"verify": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devshawn/react-dayjs.git"
},
"keywords": [
"dayjs",
"date",
"moment",
"time",
"react",
"react-component"
],
"author": {
"name": "Shawn Seymour",
"url": "https://devshawn.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/devshawn/react-dayjs/issues"
},
"homepage": "https://github.com/devshawn/react-dayjs#readme",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"source/*"
],
"testURL": "http://localhost/"
},
"peerDependencies": {
"dayjs": "^1.5.16",
"react": "^15.6.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"prop-types": "^15.6.1"
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@testing-library/react": "^11.1.0",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"dayjs": "^1.10.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"jest": "^24.9.0",
"path": "^0.12.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^2.7.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}