-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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
{
"name": "@vaco/core",
"version": "0.0.1",
"description": "Library that extends the constraint validation api.",
"keywords": [
"validation"
],
"homepage": "https://github.com/JSteitz/vaco#readme",
"bugs": "https://github.com/JSteitz/vaco/issues",
"license": "MIT",
"author": "Jürgen Steitz <[email protected]>",
"files": [
"dist/*"
],
"type": "module",
"browser": "dist/index.esm.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "tests"
},
"repository": "github:JSteitz/vaco",
"scripts": {
"build": "npm run build:lib && npm run build:browser && npm run build:types",
"build:lib": "esbuild lib/index.ts --sourcemap --bundle --minify --format=esm --outfile=dist/index.esm.js",
"build:browser": "esbuild lib/index.ts --sourcemap --bundle --minify --format=iife --global-name=Vaco --outfile=dist/index.browser.js",
"build:types": "dts-bundle-generator lib/index.ts -o dist/index.d.ts",
"test": "npm run test:compile && node -r dotenv/config tools/browserstack.js",
"test:compile": "esbuild tests/index.ts --bundle --global-name=Tests --outfile=dist/index.test.js",
"lint": "tsc --noEmit --skipLibCheck && eslint ."
},
"devDependencies": {
"@types/selenium-webdriver": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"browserstack-local": "^1.5.0",
"chalk": "^5.2.0",
"dotenv": "^16.0.0",
"dts-bundle-generator": "^7.2.0",
"esbuild": "^0.17.0",
"eslint": "^8.36.0",
"selenium-webdriver": "^4.8.0",
"tap-arc": "^0.3.0",
"typescript": "^4.9.0",
"zora": "^5.2.0"
}
}