-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pgul",
"version": "0.1.1",
"description": "pentamania's game util library",
"main": "dist/pgul.js",
"module": "dist/pgul.esm.js",
"types": "types/index.d.ts",
"files": [
"src",
"dist",
"types"
],
"scripts": {
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w",
"clean": "rimraf dist types",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"typecheck": "tsc -p . --noEmit",
"docs": "rimraf docs && typedoc --out docs src/index.ts && touch docs/.nojekyll",
"test": "jest"
},
"keywords": [],
"author": "pentamania",
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"^#/(.+)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.spec.ts"
]
},
"devDependencies": {
"@types/jest": "^26.0.23",
"canvas": "^2.8.0",
"jest": "^27.0.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^27.0.3",
"typedoc": "^0.23.26",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/css-font-loading-module": "0.0.7"
}
}