-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.55 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
83
84
85
{
"name": "acex",
"version": "0.10.2023",
"private": true,
"description": "Extend AirCampus Portal",
"directories": {
"test": "test"
},
"type": "module",
"scripts": {
"upgrade": "npx --yes npm-check-updates -u && npm update && npm dedup",
"clean": "rimraf node_modules/ src/out src/*.js src/*.map && npm install",
"full-build": "sh -xe build.sh",
"build": "rimraf src/out src/*.js src/*.map && node esbuild.config.js",
"watch": "tsc --watch",
"pretest": "tsc",
"test": "nyc mocha",
"coverage": "nyc --reporter cobertura mocha",
"test-hate": "mocha --reporter=dot ./test/",
"test-report": "mocha --reporter=doc ./test/ > ./mocha-report.html",
"lint": "eslint src && prettier --check src && tsc --noEmit",
"format": "eslint src --fix && prettier --write src",
"textlint": "textlint *.md *.txt",
"htmlhint": "htmlhint \"src/**/*.html\"",
"stylelint": "stylelint \"src/**/*.css\" \"src/**/*.scss\""
},
"repository": {
"type": "git",
"url": "https://github.com/takuya-o/ACex.git"
},
"keywords": [
"Chrome Extentions",
"BBT",
"AirCampus"
],
"author": {
"name": "Takuya Ono",
"email": "[email protected]",
"url": "https://github.com/takuya-o/"
},
"license": "",
"bugs": {
"url": "https://github.com/takuya-o/ACex/issues"
},
"homepage": "https://github.com/takuya-o/ACex#readme",
"engines": {
"npm": ">=9.0.0",
"node": ">=20.0.0"
},
"devDependencies": {
"@aarongoldenthal/eslint-config-standard": "^33.0.2",
"@eslint/js": "^9.18.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chrome": "^0.0.299",
"@types/google.visualization": "^0.0.74",
"crx3": "^1.1.3",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"eslint-formatter-gitlab": "^5.1.0",
"globals": "^15.14.0",
"htmlhint": "^1.1.4",
"mocha": "^11.1.0",
"npm": "^11.0.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"stylelint": "^16.13.2",
"stylelint-config-recommended": "^15.0.0",
"stylelint-config-standard": "^37.0.0",
"textlint": "^14.4.2",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^2.4.3",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"textlint-rule-preset-jtf-style": "^3.0.1",
"textlint-rule-prh": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"tyscan": "^0.3.2"
},
"dependencies": {
"jspdf": "^2.5.2"
}
}