forked from azazdeaz/react-gsap-enhancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.5 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
{
"name": "react-gsap-enhancer",
"version": "0.3.0",
"description": "Use the full power of React and GSAP together",
"main": "lib/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"start": "gulp",
"coverage": "babel-node node_modules/.bin/isparta cover --report text --report lcov node_modules/.bin/_mocha -- --reporter dot",
"lib": "rm -rf lib && babel ./src --out-dir lib --source-maps --source-maps",
"lib-watch": "npm run lib && babel ./src --out-dir lib --source-maps --source-maps --watch",
"browser-build": "webpack --config webpack.browser.config.js",
"publish-browser": "npm run browser-build && gh-pages --dist browser --branch browser",
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha --compilers js:babel-register",
"test-debug": "node-debug _mocha --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "https://github.com/azazdeaz/react-gsap-enhancer.git"
},
"author": "Polgár András <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/azazdeaz/react-gsap-enhancer/issues"
},
"keywords": [
"animation",
"greensock",
"gsap",
"react",
"react-component"
],
"homepage": "https://github.com/azazdeaz/react-gsap-enhancer",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.2.0",
"chai-spies": "^0.7.0",
"component-playground": "^1.3.1",
"coveralls": "^2.11.4",
"custom-drag": "0.0.3",
"eslint": "^3.3.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-mocha": "^4.3.0",
"eslint-plugin-react": "^6.1.0",
"file-loader": "^0.8.4",
"gh-pages": "^0.4.0",
"gsap": "^1.18.0",
"gulp": "^3.9.0",
"gulp-gh-pages": "^0.5.2",
"gulp-util": "^3.0.6",
"history": "^1.13.1",
"isparta": "^4.0.0",
"lodash": "^3.10.1",
"material-ui": "^0.15.4",
"mocha": "^2.3.2",
"node-libs-browser": "^0.5.2",
"radium": "^0.18.1",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-motion": "^0.2.7",
"react-router": "^1.0.0",
"react-tap-event-plugin": "^1.0.0",
"redux": "^0.12.0",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1"
}
}