forked from mattcolman/phaser-list-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "phaser-list-view",
"version": "1.5.2",
"description": "ListView class for Phaser. Great for making high scoreboards!",
"main": "lib/index.js",
"scripts": {
"start": "npm run run-demos",
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"build": "APP_ENV=production && NODE_ENV=production && webpack --progress --colors",
"run-demos": "npm run build && export APP_ENV=demo && webpack --config webpack.demos.config.js",
"build-demos": "export APP_ENV=demo && NODE_ENV=production && webpack --config webpack.demos.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattcolman/phaser-list-view.git"
},
"keywords": [
"phaser",
"list",
"view",
"swipe",
"carousel",
"scroller",
"performance",
"60fps"
],
"author": "Matt Colman <[email protected]> (http://www.mattcolman.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattcolman/phaser-list-view/issues"
},
"homepage": "https://github.com/mattcolman/phaser-list-view#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browser-sync": "^2.18.6",
"browser-sync-webpack-plugin": "^1.1.3",
"es6-promise": "^4.0.5",
"exports-loader": "^0.6.3",
"imports-loader": "^0.7.0",
"path": "^0.12.7",
"phaser": "^2.4.6",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {}
}