-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
118 lines (118 loc) · 4.16 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "odyssey-nova",
"private": true,
"version": "0.0.5",
"description": "Odyssey Nova Web-only Client",
"scripts": {
"prepublish": "npm run build",
"prepack": "npm run make",
"watch": "parallelshell 'npm run watch:styles' 'npm run watch:scripts' 'npm run watch:html'",
"test": "babel-node ./spec/index.js ./src/**/*.test.js",
"clean": "rm -rf ./dist/ && mkdir ./dist",
"serve": "serve -CJS --no-less ./dist",
"livereload": "livereload ./dist -i 400",
"lint": "eslint ./src/*.js",
"build:styles": "ho compile -d -e src/styles.less -o dist/styles.css -p src:node_modules:src/components:src/core/styles -c .hodevrc",
"make:styles": "ho compile -e src/styles.less -o dist/styles.css -p src:node_modules:src/components:src/core/styles -c package.json",
"watch:styles": "ho watch -d -w 'src/**/*.less' -e src/styles.less -o dist/styles.css -p src:node_modules:src/components:src/core/styles -c .hodevrc",
"build:scripts": "DEBUG=true NODE_PATH=./src/components:./src browserify ./src/app.js --extension .jsx -t babelify -t flowcheck -t envify -t brfs --debug > ./dist/main.js",
"make:scripts": "NODE_PATH=./src/components:./src NODE_ENV=prod browserify ./src/app.js --extension .jsx -t babelify -t brfs | uglifyjs > ./dist/main.js",
"watch:scripts": "DEBUG=true NODE_PATH=./src/components:./src watchify ./src/app.js --extension .jsx -t babelify -t flowcheck -t envify -t brfs --debug -o ./dist/main.js -v",
"make:polyfill": "browserify ./src/polyfill.js | uglifyjs > ./dist/polyfill.js",
"make:assets": "cp -r ./src/assets ./dist/",
"make:html": "mustache package.json ./src/tmpl/index.hjs > ./dist/index.html",
"watch:html": "watch 'npm run make:html' ./src/tmpl",
"prebuild": "npm run clean",
"build": "npm run make:assets && npm run make:html && npm run make:polyfill && npm run build:scripts && npm run build:styles",
"premake": "npm run clean",
"make": "NODE_ENV=prod npm run make:assets && npm run make:html && npm run make:polyfill && npm run make:scripts && npm run make:styles",
"predeploy": "npm run make",
"deploy": "echo \"sort out the deploy, you chump\""
},
"ho": {
"autoprefixer-transform": {
"browsers": [
"last 3 versions"
]
},
"cleancss-transform": {
"compatibility": "ie9"
}
},
"bundler": {
"paths": [
"src",
"node_modules",
"src/components"
],
"extensions": [
".js",
".jsx"
]
},
"author": "Matt Styles",
"repository": {
"type": "git",
"url": "git://github.com/mattstyles/odyssey-nova.git"
},
"bugs": {
"url": "https://github.com/mattstyles/odyssey-nova/issues"
},
"homepage": "https://github.com/mattstyles/odyssey-nova",
"license": "MIT",
"dependencies": {
"@mattstyles/tick": "^0.1.0",
"babel": "^5.8.23",
"bezier-easing": "^1.1.1",
"classnames": "^2.1.5",
"debounce": "^1.0.0",
"errno": "^0.1.4",
"eventemitter3": "^1.1.1",
"fast-simplex-noise": "^1.0.0",
"flux": "^2.1.1",
"heightmap": "^0.2.1",
"ho-grid": "^2.0.0",
"immreact": "^0.1.0",
"immstruct": "^2.0.0",
"immutable": "^3.7.5",
"lodash.random": "^3.0.1",
"mathutil": "^0.2.0",
"normalize.css": "^3.0.3",
"p2": "^0.7.0",
"pixi-starfield": "^0.7.0",
"pixi.js": "^3.0.7",
"preload.io": "^1.2.0",
"preload.io-pixi": "^0.2.0",
"qs": "^5.2.0",
"quay": "^0.2.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"stats.js": "mrdoob/stats.js",
"to-map": "^1.0.0",
"underscore.string": "^3.2.2",
"webfontloader": "^1.6.10",
"whatwg-fetch": "^0.10.0"
},
"devDependencies": {
"autoprefixer-transform": "^0.3.1",
"babel-eslint": "^4.1.3",
"babelify": "^6.3.0",
"brfs": "^1.4.1",
"browserify": "^11.2.0",
"cleancss-transform": "^0.1.1",
"envify": "^3.4.0",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"flowcheck": "^0.2.7",
"ho": "^1.1.2",
"livereload": "^0.3.7",
"minimist": "^1.2.0",
"mustache": "^2.1.3",
"parallelshell": "^2.0.0",
"serve": "^1.4.0",
"tape": "^4.2.1",
"uglifyjs": "^2.4.10",
"watch": "^0.16.0",
"watchify": "^3.4.0"
}
}