-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@zacktherrien/typescript-render-engine",
"version": "2.0.0",
"description": "A super simple and lightweight TypeScript rendering engine for making 2D JavaScript games.",
"keywords": [
"javascript",
"typescript",
"canvas",
"engine",
"game",
"2d",
"lightweight",
"simple"
],
"homepage": "https://github.com/ZackTherrien/typescript-render-engine#readme",
"author": "Zack Therrien",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ZackTherrien/typescript-render-engine/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZackTherrien/typescript-render-engine.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && npm run lint && git add -A src",
"postversion": "git push && git push --tags",
"postpublish": "npm run publish-examples",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"examples": "parcel examples/index.html --open",
"build-examples": "parcel build examples/index.html --out-dir ./dist-examples/ --public-url /typescript-render-engine",
"publish-examples": "npm run build-examples && gh-pages -d dist-examples"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"gh-pages": "^2.2.0"
}
}