forked from animachine/animachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.27 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
91
92
93
94
95
96
97
98
{
"name": "animachine",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"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",
"test": "mocha --compilers js:babel/register",
"test-debug": "node-debug _mocha --compilers js:babel/register",
"build-browser": "rm -rf browser && webpack --config webpack.browser.config.prod.js",
"build-bundle": "webpack --config webpack.bundle.config.js",
"build-demo": "npm run build-browser && rm -rf demo/dist && webpack --config demo/webpack.config.prod.js",
"clear-gh-pages-cache": "rm -rf node_modules/gh-pages/.cache/",
"publish-browser": "npm run build-browser && npm run clear-gh-pages-cache && gh-pages --dist browser --branch browser-dist --repo [email protected]:animachine/animachine.git",
"publish-demo": "npm run build-demo && npm run clear-gh-pages-cache && gh-pages --dist demo/dist --repo [email protected]:animachine/demos.git"
},
"repository": {
"type": "git",
"url": "https://github.com/animachine/animachine.git"
},
"author": "Polgár András <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/animachine/animachine/issues"
},
"homepage": "https://github.com/animachine/animachine",
"dependencies": {
"array.from": "^0.2.0",
"array.prototype.find": "^1.0.0",
"array.prototype.findindex": "^1.0.0",
"bezier-easing": "^1.1.0",
"clipboard": "^1.5.10",
"custom-drag": "0.0.3",
"event-emitter": "^0.3.3",
"file-saver": "^1.3.0",
"gh-pages": "^0.11.0",
"lodash": "^4.6.1",
"putainde-localstorage": "^4.0.0",
"randomstring": "^1.1.3",
"react": "^15.0.2",
"react-dnd": "^1.1.8",
"react-dom": "^15.0.2",
"react-gsap-enhancer": "^0.2.1",
"react-hotkeys": "^0.8.0",
"react-matterkit": "0.0.45",
"react-pure-render": "^1.0.2",
"react-remarkable": "^1.1.1",
"spaceman": "0.0.20",
"transhand": "^0.1.26",
"webpack": "^1.13.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.10",
"babel-loader": "^5.3.2",
"babel-plugin-dev": "^0.0.1",
"babel-plugin-react-transform": "^1.1.1",
"chai": "^3.3.0",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.4",
"envify": "^1.2.1",
"envify-loader": "^0.1.0",
"eslint": "^1.5.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-mocha": "^1.0.0",
"eslint-plugin-react": "^3.4.2",
"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-size": "^1.2.3",
"gulp-util": "^3.0.6",
"gulp-zip": "^3.0.2",
"history": "^1.13.1",
"http-server": "^0.8.0",
"isparta": "^3.0.4",
"mobservable-react-devtools": "^2.0.5",
"mocha": "^2.3.3",
"node-libs-browser": "^0.5.2",
"raw-loader": "^0.5.1",
"react": "^0.14.0",
"react-addons-perf": "^0.14.1",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.2.8",
"react-router": "^2.0.0",
"react-transform-hmr": "^1.0.1",
"uid": "0.0.2",
"url-loader": "^0.5.7",
"webpack": "^1.12.2",
"webpack-dev-server": "*"
}
}