-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "maze-of-seasons",
"description": "Navigatable randomly generated multi-level maze.",
"repository": {
"type": "git",
"url": "https://github.com/alexkadis/maze-game"
},
"author": "Alex Kadis",
"license": "UNLICENSED",
"scripts": {
"test-setup": "mocha --require ts-node/register test/**/TestSetup.ts",
"test": "mocha --require ts-node/register test/**/*.ts",
"build-scss": "sass ./src/scss/base.scss ./build/css/base.css",
"build-ts": "tsc --build",
"build-ugly": "uglifyjs ./build/js/maze.js --output ./build/js/maze.min.js",
"build-project": "npm run build-ts && npm run build-ugly && npm run build-scss",
"watch-scss": "sass ./src/scss/base.scss ./build/css/base.css --watch"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/es6-promise": "^3.3.0",
"@types/jquery": "^3.3.19",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"chai": "^4.2.0",
"concat": "github:alexkadis/concat-export-public",
"mocha": "^8.2.0",
"node-sass": "^4.9.4",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"uglify-es": "^3.3.9",
"uglify-js": "^3.4.9"
}
}