-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@kiswa/kilo",
"author": "Matthew Ross",
"license": "MIT",
"version": "0.1.11",
"description": "A simple 2D game engine.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"docs": "typedoc lib && cp logo.png docs/",
"test": "TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register test/**/*.spec.ts",
"test:cov": "TS_NODE_PROJECT=test/tsconfig.json nyc --cache=false -r lcov -r json-summary -e .ts -x test/**/*.spec.ts node_modules/.bin/mocha --require ts-node/register --require source-map-support/register test/**/*.spec.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/gl": "^4.1.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"canvas": "^2.6.1",
"chai": "^4.2.0",
"gl": "^4.9.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"request": "^2.88.2",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.20.14",
"typedoc-plugin-external-module-name": "^4.0.6",
"typescript": "^4.1.3"
},
"mocha": {
"require": [
"jsdom-global/register"
]
},
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiswa/kilo.git"
},
"keywords": [
"TypeScript",
"2D",
"Game",
"Engine"
],
"bugs": {
"url": "https://github.com/kiswa/kilo/issues"
},
"homepage": "https://github.com/kiswa/kilo#readme"
}