-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "civicrm-api",
"type": "module",
"version": "0.3.0",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"prepublish": "npm run build",
"dev": "microbundle watch",
"test": "vitest",
"test:browser": "vitest --config vitest.browser.config.js",
"coverage": "vitest run --coverage"
},
"license": "MIT",
"devDependencies": {
"@open-draft/deferred-promise": "^2.2.0",
"@types/lodash-es": "^4.17.12",
"@vitest/browser": "^1.4.0",
"@vitest/coverage-v8": "^1.4.0",
"microbundle": "^0.15.1",
"msw": "^2.2.2",
"prettier": "^3.2.5",
"vitest": "^1.3.1",
"webdriverio": "^8.35.1",
"lodash-es": "^4.17.21"
},
"msw": {
"workerDirectory": [
"test/browser/public"
]
}
}