-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "@mewhit/remote-data-ts",
"version": "0.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/mewhit/remote-data-ts.git",
"author": "Mike Whittom <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin swc3",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@swc/core": "1.3.6",
"@swc/jest": "0.2.23",
"@tsconfig/node16": "1.0.3",
"@types/jest": "29.1.2",
"jest": "29.1.2",
"rollup": "2.79.1",
"rollup-plugin-dts": "4.2.3",
"rollup-plugin-swc3": "0.6.0",
"typescript": "4.8.4"
},
"files": [
"dist"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "@swc/jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}