-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.38 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.38 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
34
35
36
37
38
39
40
41
42
{
"name": "@dubrowgn/impulse.js",
"version": "0.2.1",
"description": "Impulse.js is a high performance HTML5 game engine for JavaScript.",
"scripts": {
"build": "npx tsc && cat LICENSE dist/impulse.js > dist/impulse.js.lic && mv dist/impulse.js.lic dist/impulse.js",
"build-release": "npm run -s build && npm run -s compress",
"clean": "rm -rf dist",
"compress": "npx uglify-js dist/impulse.js -o dist/impulse.min.js -cm --source-map 'content=dist/impulse.js.map' --comments",
"publish": "cp README.md LICENSE package.json dist/. && cd dist && npm publish --access=public",
"shell": "npx ts-node",
"shell-test": "npx ts-node --project test/tsconfig.json --dir .",
"test": "npx ts-node --project test/tsconfig.json --dir . $(npx which pta) test/**/*.{j,t}s",
"watch": "npx tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dubrowgn/impulse.js.git"
},
"keywords": [
"game",
"engine",
"web"
],
"author": "me@dubrowgn.com",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/dubrowgn/impulse.js/issues"
},
"homepage": "https://impulsejs.com",
"devDependencies": {
"pta": "0.1.x",
"ts-node": "10.x",
"typescript": "4.x",
"uglify-js": "3.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/impulse.js",
"types": "dist/impulse.d.ts"
}