-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1001 Bytes
/
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
{
"name": "sao-ts-scaffold",
"version": "0.0.0",
"description": "my typescript SAO generator",
"repository": {
"url": "gengjiawen/ts-scaffold",
"type": "git"
},
"author": "gengjiawen <[email protected]> (github.com/gengjiawen)",
"license": "MIT",
"files": [
"saofile.js",
"template"
],
"keywords": [
"sao-generator",
"sao",
"typescript",
"jest",
"easy-setup",
"scaffolding"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"superb": "^4.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "27.4.1",
"execa": "^5.1.1",
"fs-extra": "^10.0.1",
"jest": "27.5.1",
"sao": "^1.7.1",
"ts-jest": "27.1.3",
"typescript": "^4.6.2"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 60000,
"testPathIgnorePatterns": [
"template/",
"sample_out/",
"/node_modules/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}