UNPKG

2.16 kBJSONView Raw
1{
2 "name": "react-anime",
3 "version": "0.2.3",
4 "description": "(ノ´ヮ´)ノ*:・゚✧ A super easy animation library for React.",
5 "main": "dist/anime.min.js",
6 "typings": "./Anime.d.ts",
7 "scripts": {
8 "build:develop": "cross-env NODE_ENV=development webpack src/anime.js dist/anime.js",
9 "build:production": "cross-env NODE_ENV=production webpack src/anime.js dist/anime.min.js",
10 "build:publish": "npm run build:develop && npm run build:production",
11 "test": "jest --coverage",
12 "coverage": "jest && codecov",
13 "test:watch": "jest --converage --watch"
14 },
15 "jest": {
16 "coverageDirectory": "./coverage/",
17 "collectCoverage": true
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+ssh://git@github.com/alaingalvan/react-anime.git"
22 },
23 "keywords": [
24 "animation",
25 "anime",
26 "react",
27 "motion",
28 "transition",
29 "tween",
30 "component"
31 ],
32 "author": "Alain Galvan",
33 "contributors": [
34 {
35 "name": "Kennet Postigo",
36 "email": "kennetfpostigo@gmail.com",
37 "url": "http://stelatech.com/"
38 }
39 ],
40 "license": "MIT",
41 "bugs": {
42 "url": "https://github.com/alaingalvan/react-anime/issues"
43 },
44 "homepage": "https://github.com/alaingalvan/react-anime#readme",
45 "devDependencies": {
46 "babel-cli": "6.14.0",
47 "babel-core": "6.14.0",
48 "babel-jest": "15.0.0",
49 "babel-loader": "6.2.5",
50 "babel-plugin-syntax-jsx": "6.13.0",
51 "babel-plugin-transform-class-properties": "6.11.5",
52 "babel-plugin-transform-flow-strip-types": "6.14.0",
53 "babel-polyfill": "6.13.0",
54 "babel-preset-es2015": "6.14.0",
55 "babel-preset-react": "6.11.1",
56 "babel-preset-stage-2": "^6.13.0",
57 "codecov": "1.0.1",
58 "coveralls": "2.11.12",
59 "cross-env": "2.0.1",
60 "eslint": "3.5.0",
61 "eslint-plugin-babel": "3.3.0",
62 "eslint-plugin-react": "6.2.1",
63 "flow-bin": "0.32.0",
64 "jest": "^15.1.1",
65 "react-test-renderer": "15.3.1",
66 "webpack": "^2.1.0-beta.22"
67 },
68 "peerDependencies": {
69 "animejs": "^1.1.1",
70 "react": "^15.3.1",
71 "react-dom": "^15.3.1"
72 }
73}