-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "stimulus-typescript",
"version": "0.1.3",
"description": "Strongly typed Stimulus controllers.",
"repository": {
"type": "git",
"url": "git+https://github.com/ajaishankar/stimulus-typescript.git"
},
"license": "MIT",
"author": "Ajai Shankar",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": ["hotwire", "stimulus", "typescript"],
"files": [
"dist/index.js",
"dist/index.umd.js",
"dist/index.d.ts"
],
"scripts": {
"prebuild": "npm run clean",
"build": "rollup --bundleConfigAsCjs -c",
"clean": "rimraf dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "npm run test && npm run build",
"test": "jest",
"test:coverage": "rimraf coverage && jest --coverage",
"test:codecov": "npm run test:coverage && codecov"
},
"devDependencies": {
"@hotwired/stimulus": "^3.0.0",
"@html-eslint/parser": "^0.19.1",
"@jest/globals": "^29.2.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@testing-library/dom": "^9.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"mutationobserver-shim": "^0.3.7",
"prettier": "^3.0.1",
"prettier-plugin-organize-imports": "^3.2.3",
"rimraf": "^5.0.5",
"rollup": "3.2.5",
"ts-jest": "^29.0.5",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0"
},
"overrides": {
"rollup": "3.2.5"
}
}