forked from imoutsatsos/uno-choice-plugin
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
73 lines (73 loc) · 2.06 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
{
"license": "MIT",
"version": "1.0.0",
"description": "Active Choices Plugin UI",
"name": "uno-choice",
"private": true,
"scripts": {
"test": "jest --colors",
"dev": "webpack --config webpack.config.js",
"prod": "webpack --config webpack.config.js --mode=production",
"build": "yarn prod",
"mvntest": "yarn test",
"mvnbuild": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-flow": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@types/jquery": "^3.5.31",
"babel-loader": "^9.2.1",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jquery": "^3.7.1",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
},
"browserslist": [
"defaults",
"not IE 11"
],
"packageManager": "yarn@1.22.19",
"jest-junit": {
"outputDirectory": "target/surefire-reports",
"outputName": "TEST-Jest.xml",
"ancestorSeparator": " › ",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"usePathForSuiteName": "true"
},
"babel": {
"presets": [
["@babel/preset-env", {"targets": {"node": "current"}}],
"@babel/preset-typescript",
"@babel/preset-flow"
],
"plugins": [
"babel-plugin-transform-async-to-promises"
]
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"reporters": [
"default",
"jest-junit"
],
"testMatch": [
"<rootDir>/src/test/js/*.test.ts"
]
}
}