-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "ts-bookmarklet",
"version": "1.0.2",
"description": "TypeScript compiler for bookmarklet",
"main": "lib/main.js",
"bin": "bin/ts-bookmarklet.js",
"scripts": {
"build": "tsc --build src/tsconfig.json",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [],
"repository": {
"url": "https://github.com/sugoroku-y/ts-bookmarklet.git"
},
"author": {
"name": "YEBISUYA Sugoroku",
"email": "yebisuya@gmail.com",
"url": "https://qiita.com/sugoroku_y"
},
"license": "MIT",
"dependencies": {
"optionalist": "^1.0.5",
"typescript": "^4.0.3",
"uglify-es": "^3.3.9"
},
"devDependencies": {
"@types/node": "^14.11.5",
"@types/uglify-es": "^3.0.0",
"jest": "^26.5.2",
"ts-jest": "^26.4.1"
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"transform": {
"\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "src/tsconfig.json"
}
},
"collectCoverageFrom": [
"**/src/*.ts",
"!**/src/main.ts"
]
}
}