UNPKG

2.23 kBJSONView Raw
1{
2 "name": "react-anime",
3 "version": "2.1.0",
4 "description": "(ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React.",
5 "main": "dist/react-anime.js",
6 "typings": "dist/react-anime.d.ts",
7 "scripts": {
8 "build": "webpack src/react-anime.js dist/react-anime.js && cp src/react-anime.d.ts dist/react-anime.d.ts && cp src/react-anime.js.flow dist/react-anime.js.flow",
9 "watch": "webpack -w src/react-anime.js dist/react-anime.js",
10 "pretest": "jest -u",
11 "test": "jest --coverage",
12 "coverage": "nyc npm test && nyc report --reporter=lcov && codecov"
13 },
14 "jest": {
15 "coverageDirectory": "./coverage/",
16 "collectCoverage": true
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+ssh://git@github.com/hyperfuse/react-anime.git"
21 },
22 "keywords": [
23 "animation",
24 "animate",
25 "anime",
26 "react",
27 "motion",
28 "css",
29 "transition",
30 "tween",
31 "component"
32 ],
33 "author": "Alain Galvan <hi@alain.xyz>",
34 "contributors": [
35 {
36 "name": "Alain Galvan",
37 "email": "hi@alain.xyz",
38 "url": " https://alain.xyz"
39 },
40 {
41 "name": "Kennet Postigo",
42 "email": "kennetfpostigo@gmail.com",
43 "url": " http://kpostigo.com"
44 }
45 ],
46 "license": "MIT",
47 "bugs": {
48 "url": "https://github.com/hyperfuse/react-anime/issues"
49 },
50 "homepage": "https://hyperfuse.github.io/react-anime",
51 "devDependencies": {
52 "babel-core": "^6.26.x",
53 "babel-jest": "^21.2.x",
54 "babel-loader": "^7.1.x",
55 "babel-plugin-syntax-jsx": "^6.18.x",
56 "babel-plugin-transform-class-properties": "^6.24.x",
57 "babel-plugin-transform-flow-strip-types": "^6.22.x",
58 "babel-polyfill": "^6.26.x",
59 "babel-preset-es2015": "^6.24.x",
60 "babel-preset-react": "^6.24.x",
61 "babel-preset-stage-2": "^6.24.x",
62 "codecov": "^3.0.x",
63 "coveralls": "^3.0.x",
64 "flow-bin": "^0.58.x",
65 "flow-typed": "^2.2.x",
66 "jest": "^21.2.x",
67 "nyc": "^11.2.x",
68 "react-test-renderer": "^16.0.x",
69 "webpack": "^3.8.x",
70 "react": "^16.x",
71 "react-dom": "^16.x"
72 },
73 "peerDependencies": {
74 "react": "^16.x",
75 "react-dom": "^16.x"
76 },
77 "dependencies": {
78 "animejs": "^2.2.0",
79 "lodash.isequal": "^4.5.0"
80 }
81}