-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
executable file
·64 lines (64 loc) · 1.7 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
{
"name": "react-overdrive",
"version": "0.0.10",
"description": "Super easy magic-move transitions for React apps",
"main": "lib/Overdrive.min.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "standard src/*.* && npm test && NODE_ENV=production webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest",
"standard": "standard"
},
"peerDependencies": {
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-core": "6.22.1",
"babel-jest": "^21.2.0",
"babel-loader": "6.2.10",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "6.x.x",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "6.x.x",
"babel-runtime": "^6.23.0",
"jest": "^22.4.3",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"standard": "^14.2.0",
"webpack": "2.2.1",
"yargs": "6.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/berzniz/react-overdrive.git"
},
"keywords": [
"magic-move",
"animations",
"transitions",
"overdrive",
"react",
"reactjs",
"react-router",
"nextjs"
],
"author": "Tal Bereznitskey",
"license": "MIT",
"jest": {
"testURL": "http://localhost/"
}
}