-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@brisberg/delve-game",
"version": "0.1.0",
"description": "Solo Map-drawing game based on Delve.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"typescript"
],
"author": "brisberg <[email protected]>",
"license": "MIT",
"private": false,
"repository": "https://github.com/brisberg/delve-game.git",
"bugs": {
"url": "https://github.com/brisberg/delve-game/issues"
},
"homepage": "https://github.com/brisberg/delve-game#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"clang-format": "^1.4.0",
"eslint": "^7.3.1",
"eslint-config-google": "^0.14.0",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
}
}