-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "autocomplete",
"version": "1.0.0",
"description": "",
"main": "built/app.js",
"type": "module",
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"transform": {
"^.+\\.ts?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"verbose": true,
"setupFiles": [
"./jest.setup.ts"
]
},
"scripts": {
"test": "jest",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.1.4",
"babel-plugin-add-import-extension": "^1.6.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.7.0-dev.20220421",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"@webcomponents/custom-elements": "^1.5.0"
}
}