-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 727 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 727 Bytes
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
{
"name": "fly",
"version": "0.4.0",
"description": "Software engineer quicklinks.",
"main": "./extension/dist/background.js",
"scripts": {
"build": "npx tsc -p .",
"test": "jest"
},
"author": "Apollorion",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.188",
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {},
"jest": {
"preset": "ts-jest",
"modulePathIgnorePatterns": [
"dist"
],
"extensionsToTreatAsEsm": [
".ts"
],
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}