-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "vertons",
"version": "0.1.0",
"description": "任天堂の \"ナビつき! つくってわかる はじめてゲームプログラミング\" 風の何か",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igrep/vertons.git"
},
"keywords": [
"WebComponents",
"TypeScript"
],
"author": "YAMAMOTO Yuji",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/igrep/web-components-verton/issues"
},
"homepage": "https://github.com/igrep/web-components-verton#readme",
"devDependencies": {
"@types/jest": "^27.0.0",
"fast-check": "^2.22.0",
"jest": "^27.0.6",
"jsdom": "^16.7.0",
"prettier": "^2.3.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.test\\.ts",
"transform": {
"^.+\\.[tj]s$": "ts-jest"
},
"testEnvironment": "jsdom",
"globals": {
"ts-jest": {
"isolatedModules": true
}
}
}
}