forked from mitchemmc/react-anime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
{
"name": "react-anime",
"version": "3.0.3",
"description": "(ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React.",
"main": "dist/react-anime.js",
"typings": "dist/react-anime.d.ts",
"scripts": {
"build": "webpack --config webpack.prod.js && cp src/react-anime.d.ts dist/react-anime.d.ts && cp src/react-anime.js.flow dist/react-anime.js.flow",
"pretest": "jest -u",
"test": "jest --coverage",
"coverage": "nyc npm test && nyc report --reporter=lcov && codecov",
"start": "npm run build"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hyperfuse/react-anime.git"
},
"keywords": [
"animation",
"animate",
"anime",
"react",
"motion",
"css",
"transition",
"tween",
"component"
],
"author": "Alain Galvan <hi@alain.xyz>",
"contributors": [
{
"name": "Alain Galvan",
"email": "hi@alain.xyz",
"url": "https://alain.xyz"
},
{
"name": "Kennet Postigo",
"email": "kennetfpostigo@gmail.com",
"url": "http://kpostigo.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hyperfuse/react-anime/issues"
},
"homepage": "https://alain.xyz/libraries/react-anime",
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-syntax-jsx": "7.7.4",
"@babel/plugin-transform-flow-strip-types": "7.7.4",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "7.7.7",
"@babel/preset-flow": "7.7.4",
"@babel/preset-react": "7.7.4",
"@babel/register": "^7.7.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.x",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.x",
"codecov": "^3.6.x",
"coveralls": "^3.0.x",
"flow-bin": "^0.114.x",
"flow-typed": "^2.6.x",
"jest": "^24.9.x",
"nyc": "^15.0.x",
"react": "^16.12.0",
"react-dom": "^16.12.x",
"react-test-renderer": "^16.12.x",
"uglifyjs-webpack-plugin": "^2.2.x",
"webpack": "^4.41.x",
"webpack-command": "^0.5.x",
"webpack-merge": "^4.2.x"
},
"peerDependencies": {
"react": "^16.x",
"react-dom": "^16.x"
},
"dependencies": {
"animejs": "^3.1.0",
"lodash.isequal": "^4.5.0"
}
}