forked from adexin/spinners-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.78 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "spinners-react",
"version": "1.0.5",
"description": "Lightweight SVG/CSS spinners for React",
"sideEffects": [
"src/*.css"
],
"main": "lib/umd/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"prepare": "npm run lint && npm run build",
"prebuild": "rimraf lib/*",
"prestart": "rimraf lib/*",
"build": "rollup -c --configProd",
"start": "rollup -c -w",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"jest": "jest --coverage --coverageReporters=text-lcov"
},
"files": [
"lib"
],
"directories": {
"lib": "./lib",
"test": "./src/__tests__"
},
"keywords": [
"react-spinners",
"react-spinner",
"spinner-react",
"spinners",
"spinner",
"loaders",
"loader",
"loading",
"loading spinners",
"loading spinner",
"progress",
"react",
"reactjs",
"svg",
"css"
],
"repository": {
"type": "git",
"url": "https://github.com/adexin/spinners-react.git"
},
"bugs": {
"url": "https://github.com/adexin/spinners-react/issues",
"email": "info@adexin.com"
},
"author": {
"name": "Adexin",
"email": "info@adexin.com",
"url": "https://adexin.com"
},
"contributors": [],
"license": "MIT",
"homepage": "demo.adexin.com/spinners/",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^24.9.1",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"coveralls": "^3.0.9",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"glob": "^7.1.6",
"jest": "^24.9.0",
"jest-transform-css": "^2.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.0",
"rollup": "^1.32.1",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-postcss": "^2.4.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-ts": "^1.2.2",
"source-map-loader": "^0.2.4",
"style-inject": "^0.3.0",
"style-loader": "^1.1.3",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@types/react": "^16.x || 17.x",
"@types/react-dom": "^16.x || 17.x",
"react": "^16.x || 17.x",
"react-dom": "^16.x || 17.x"
},
"dependencies": {}
}