-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 1.84 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
{
"name": "redux-time",
"version": "0.0.29",
"description": "Redux animation library that renders your state tree at a given point in time.",
"author": "Nick Sweeting <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Monadical-SAS/redux-time/",
"bugs": {
"url": "https://github.com/Monadical-SAS/redux-time/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Monadical-SAS/redux-time.git"
},
"directories": {
"example": "examples"
},
"keywords": [
"animation",
"animations",
"time",
"time-travel",
"warped",
"react",
"redux",
"games",
"game-engine"
],
"main": "build/main.js",
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"extend": "^3.0.2",
"lodash.isequal": "^4.5.0",
"warped-time": "^0.0.19"
},
"devDependencies": {
"aliasify": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-stage-2": "^6.13.0",
"babel-runtime": "^6.26.0",
"babelify": "^10.0.0",
"browserify": "^17.0.1",
"eslint": "^5.0.1",
"eslint-plugin-babel": "^5.1.0",
"minifyify": "^7.3.5",
"redux": "^5.0.1",
"three": "^0.170.0",
"uglify-js": "3.19.3",
"watchify": "^4.0.0"
},
"browserify": {
"transform": [
"babelify",
"aliasify"
]
},
"babel": {
"presets": [
"env",
"stage-2"
],
"plugins": [
"transform-runtime"
]
},
"scripts": {
"watch": "./scripts/watch.sh",
"build": "./scripts/build.sh",
"test": "node build/tests.js",
"minify": "./node_modules/.bin/uglifyjs examples/static/stress-test.js --compress --mangle --source-map --output examples/static/stress-test.min.js"
}
}