-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"name": "stimulus-elements",
"version": "0.1.1",
"description": "Stimulus elements designed to be agnostic of which UI Framework (if any).",
"repository": {
"type": "git",
"url": "git+https://github.com/jefawks3/stimulus-elements.git"
},
"homepage": "https://github.com/jefawks3/stimulus-elements#readme",
"author": "James Fawks",
"bugs": {
"url": "https://github.com/jefawks3/stimulus-elements/issues"
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"scripts": {
"clean": "rm -fr dist",
"types": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types",
"build": "ENV NODE_ENV=production yarn types && rollup --bundleConfigAsCjs -c",
"build:test": "tsc -b tsconfig.test.json",
"watch": "rollup -bundleConfigAsCjs -wc",
"prerelease": "yarn clean && yarn build && git --no-pager diff && echo && npm pack --dry-run",
"release": "npm publish",
"test": "yarn build:test && karma start karma.conf.cjs",
"test:watch": "yarn test --auto-watch --no-single-run",
"test:treeshake": "agadoo dist",
"lint": "eslint . --ext .ts",
"format": "yarn lint --fix"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/qunit": "^2.19.4",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"agadoo": "^3.0.0",
"cypress": "^12.4.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-qunit": "^4.1.2",
"karma-sauce-launcher": "^4.3.6",
"karma-webpack": "^5.0.0",
"prettier": "^2.8.3",
"qunit": "^2.19.4",
"rollup": "^3.11.0",
"ts-loader": "^9.4.2",
"tslib": "^2.4.0",
"typescript": "^5.0.2",
"webpack": "^5.75.0"
},
"resolutions": {
"webdriverio": "^7.19.5"
},
"dependencies": {
"@floating-ui/dom": "^1.2.6",
"@hotwired/stimulus": "^3.2.1",
"webdriverio": "^8.6.7"
},
"peerDependencies": {
"@hotwired/stimulus": ">=3.2.1"
},
"files": [
"/dist"
]
}