-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
88 lines (88 loc) · 3.08 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
{
"name": "react-simple-img",
"version": "3.0.0",
"description": "react simple img",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"react",
"lazyload",
"images",
"intersection observer",
"performance",
"animation"
],
"scripts": {
"clean": "rimraf lib/",
"release": "npm version",
"postrelease": "yarn publish && git push --follow-tags",
"test": "jest --coverage --config ./jestConfig.json",
"testw": "yarn test -- --watchAll",
"coverage": "jest --config ./jestConfig.json --coverage --coverageReporters=text-lcov | coveralls",
"build": "rollup -c",
"lint": "eslint ./src --fix",
"prepublish": "yarn test && yarn flow && yarn lint && yarn run clean && yarn build",
"flow": "flow"
},
"repository": "https://github.com/bluebill1049/react-simple-img.git",
"homepage": "https://react-simple-img.now.sh",
"author": "beier luo",
"license": "Mit",
"bugs": {
"url": "https://github.com/bluebill1049/react-simple-img/issues"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-proposal-do-expressions": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-function-bind": "^7.16.0",
"@babel/plugin-proposal-function-sent": "^7.16.0",
"@babel/plugin-proposal-json-strings": "^7.16.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-proposal-pipeline-operator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-flow": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.1.0",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"flow-bin": "^0.93.0",
"flow-typed": "^2.1.5",
"jest": "^24.1.0",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-test-renderer": "^16.8.3",
"rimraf": "^2.6.3",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "3.1.0",
"rollup-plugin-flow": "^1.1.1"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
}
}