-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
89 lines (89 loc) · 3.04 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
{
"name": "react-flip-numbers",
"version": "3.0.8",
"description": "react flip your numbers",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"react",
"number",
"animate"
],
"scripts": {
"clean": "rimraf lib/",
"release": "npm version",
"postrelease": "yarn publish && git push --follow-tags",
"test": "jest",
"testw": "yarn test -- --watchAll",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"build": "rollup -c",
"lint": "eslint ./src",
"prepublish": "yarn test && yarn flow && yarn lint && yarn run clean && yarn build",
"flow": "flow"
},
"repository": "https://github.com/bluebill1049/react-flip-numbers.git",
"author": "beier luo",
"license": "Mit",
"bugs": {
"url": "https://github.com/bluebill1049/react-flip-numbers/issues"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.93.0",
"flow-typed": "^2.5.1",
"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.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-flow": "^1.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17 || ^18",
"react-simple-animate": "^3.0.1"
},
"dependencies": {
"react-simple-animate": "^3.0.1"
}
}