-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.06 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
{
"name": "zombie-attack",
"version": "1.0.0",
"description": "Arcade quality thrilling game written in TypeScript",
"type": "module",
"main": "src/mod.ts",
"scripts": {
"deno-run": "deno run --allow-all --importmap=./import_map.json src/mod.ts",
"deno-test": "npm run _clear-console && deno test --allow-all --importmap=./import_map.json test/*",
"build": "npm run _copy-build-files && rollup -c",
"build-watch": "npm run _copy-build-files && rollup -cw",
"build-clean-dist": "rm -r dist/*",
"lint": "npm run _clear-console && eslint --cache --ext .ts src/",
"_copy-build-files": "cp -r src/{main.css,index.html,game-data.json} assets/ dist",
"_clear-console": "deno eval \"console.clear()\""
},
"author": "https://www.elsewebdevelopment.com/",
"license": "gpl-3.0",
"devDependencies": {
"@rollup/plugin-typescript": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"rollup": "^1.31.1",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}