-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "av-mini-games",
"version": "1.0.0",
"main": "index.html",
"directories": {
"test": "test"
},
"scripts": {
"test": "test/test.html",
"mkdirs_build": "mkdirp build/js build/styles",
"deploy_js": "uglifyjs src/js/*.js -o build/js/av-mini-games.js",
"deploy_css": "copyfiles -up 2 src/styles/*.css build/styles",
"deploy_html": "copyup src/*.html build/",
"deploy": "npm run mkdirs_build && npm run deploy_js & npm run deploy_html & npm run deploy_css",
"clean": "bash -c 'rm -rf ./build'",
"lint": "bash -c 'jshint src/js/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexVeprev/JavaScript_MiniGames.git"
},
"author": "Alexey Veprev",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexVeprev/JavaScript_MiniGames/issues"
},
"homepage": "https://github.com/AlexVeprev/JavaScript_MiniGames#readme",
"description": "Some mini-games to learn about JS.",
"devDependencies": {
"copyfiles": "^1.0.0",
"jshint": "^2.9.4",
"mkdirp": "^0.5.1",
"uglify-js": "^2.7.4"
}
}