-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
{
"name": "@time4hacks/react-progressive-image",
"version": "0.0.1",
"author": "byliuyang",
"license": "MIT",
"repository": "byliuyang/react-progressive-image",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"keywords": [
"React",
"rxjs",
"progressive-image-loading"
],
"scripts": {
"start": "rollup -c -w",
"test": "react-scripts test",
"test:watch": "react-scripts-ts test",
"build": "rollup -c"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"rxjs": "^6.4.0"
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.4",
"@types/jest": "^24.0.4",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.1",
"classnames": "^2.2.6",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"node-sass": "^4.11.0",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-scripts": "2.1.5",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.19.2",
"rxjs": "^6.4.0",
"typescript": "^3.3.3"
}
}