-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.31 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.31 KB
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
{
"name": "Spielmatrix",
"repository": "https://github.com/mdiehr/Spielmatrix.git",
"version": "1.0.1",
"devDependencies": {
"jshint": "^2.8.0",
"browserify": "^10.2.3",
"rimraf": "^2.2.8",
"archiver": "^0.14.4",
"mkdirp": "^0.5.1",
"sox-stream": "^1.0.0",
"lodash": "^3.9.3",
"minifier": "^0.6.2"
},
"scripts": {
"start": "npm run build",
"lint": "jshint . --exclude-path .jshintignore",
"clean": "rimraf dist/* && rimraf release/*",
"distfolders": "node bin/distfolders.js",
"browserify": "browserify lib/main.js -o dist/spielmatrix/spielmatrix.bundle.js",
"minify": "minify dist/spielmatrix/spielmatrix.bundle.js",
"copy": "copy lib\\pixi\\pixi.min.js dist\\spielmatrix\\ && copy template\\*.* dist\\ && copy lib\\*.css dist\\spielmatrix\\ && copy assets\\sounds\\out\\*.* dist\\sounds\\",
"zip": "node bin/zipDist.js",
"transcode": "node bin/transcodeAudio.js",
"build": "npm run distfolders && npm run browserify && npm run copy",
"rebuild": "npm run clean && npm run build",
"release": "npm run rebuild && npm run zip",
"deploy": "copy dist\\spielmatrix\\ www\\spielmatrix && copy dist\\sounds\\ www\\sounds && copy node_modules\\babel-standalone\\babel.min.js www\\js\\lib\\"
},
"dependencies": {
"babel-standalone": "^6.19.0"
}
}