-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "alt-ujs",
"version": "1.0.1",
"description": "alternative rails-ujs",
"type": "module",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src test",
"format": "eslint src test --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taketo1113/alt-ujs.git"
},
"keywords": [
"ujs",
"rails",
"rails-ujs"
],
"author": "Taketo Takashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/taketo1113/alt-ujs/issues"
},
"homepage": "https://github.com/taketo1113/alt-ujs#readme",
"dependencies": {
"urijs": "^1.19.11"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.5.2",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/eslint-plugin": "^1.1.10",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"jsdom": "^26.0.0",
"prettier": "^3.3.3",
"vitest": "^2.1.5"
},
"publishConfig": {
"access": "public"
}
}