-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": "Anyline",
"name": "@anyline/anyline-guidance-sdk",
"version": "1.5.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/iife/index.js"
},
"./index.css": "./dist/esm/index.css"
},
"license": "MIT",
"publishConfig": {
"@anyline:registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anyline/anyline-guidance-sdk.git"
},
"scripts": {
"build:types": "tsc --build tsconfig.json",
"build:bundle": "node esbuild.config.js",
"build:demo": "node esbuild.demo.config.js",
"build": "yarn build:types && yarn build:bundle",
"lint": "eslint 'src/**/*.{js,ts}'",
"dev": "node esbuild.demo.config.js --dev",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"wdio": "TS_NODE_PROJECT=tsconfig.wdio.json wdio run ./wdio.conf.ts"
},
"type": "module",
"devDependencies": {
"@chialab/esbuild-plugin-html": "^0.18.2",
"@jest/globals": "^29.7.0",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@types/jest": "^29.5.12",
"@types/w3c-image-capture": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.5.0",
"@wdio/browserstack-service": "^8.36.0",
"@wdio/cli": "^8.36.0",
"@wdio/globals": "^8.36.0",
"@wdio/local-runner": "^8.36.0",
"@wdio/mocha-framework": "^8.36.0",
"@wdio/spec-reporter": "^8.36.0",
"browserstack-local": "^1.5.5",
"browserstack-node-sdk": "^1.32.7",
"cssnano": "^7.0.1",
"esbuild": "^0.20.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"expect-webdriverio": "^4.13.0",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"postcss-modules": "^6.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.5.4",
"typescript-eslint": "^7.5.0",
"wdio-wait-for": "^3.0.11"
},
"dependencies": {
"joi": "^17.13.1"
},
"resolutions": {
"@typescript-eslint/parser": "6.21.0",
"@typescript-eslint/eslint-plugin": "6.21.0"
}
}