-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-cover",
"version": "1.0.8",
"description": "A React component. Cover a loading style over element",
"license": "MIT",
"main": "dist/index.min.js",
"types": "types/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist types && webpack",
"start": "webpack --mode=development -w",
"pack-d": "npm pack --dry-run",
"lint": "eslint src --ext .ts,.tsx",
"pretest": "yarn lint",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/AkaiZhao/react-cover.git"
},
"keywords": [
"react-loading",
"react-cover",
"react",
"react-component"
],
"author": {
"name": "AkaiZhao"
},
"bugs": {
"url": "https://github.com/AkaiZhao/react-cover/issues"
},
"homepage": "https://akaizhao.github.io/react-cover/",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-loading": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.18",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/sinon": "^9.0.9",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel": "^6.23.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"coveralls": "^3.1.0",
"css-loader": "^5.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.2.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-loading": "^2.0.3",
"rimraf": "^3.0.2",
"sinon": "^9.2.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.6",
"typescript": "^4.0.3",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}