-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.52 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
{
"name": "acex",
"version": "0.9.2023",
"description": "Extend AirCampus Portal",
"directories": {
"test": "test"
},
"type": "module",
"scripts": {
"upgrade": "npx --yes npm-check-updates -u && npm update && npm dedup",
"full-build": "sh -xe build.sh",
"build": "rimraf src/out && node esbuild.config.js",
"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 --ext ts && prettier --check src && tsc --noEmit",
"format": "prettier --write src",
"textlint": "textlint \"*.md *.txt\"",
"htmlhint": "htmlhint \"src/**/*.html\"",
"stylelint": "stylelint \"src/**/*.css\" \"src/**/*.scss\"",
"tslint": "tslint \"src/**/*.ts\"",
"tslint-fix": "tslint --fix \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "[email protected]:ChromeExtentions/acex.git"
},
"keywords": [
"Chrome Extentions",
"BBT",
"AirCampus"
],
"author": "Takuya Ono",
"license": "UNLICENSED",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@sourcegraph/scip-typescript": "^0.3.9",
"@types/chrome": "^0.0.241",
"@types/google.visualization": "^0.0.69",
"@types/jspdf": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"crx3": "^1.1.3",
"esbuild": "^0.18.13",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-formatter-gitlab": "^4.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"htmlhint": "^1.1.4",
"lsif-tsc": "^0.5.6",
"mocha": "^10.2.0",
"npm": "^9.8.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"source-map-support": "^0.5.21",
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"textlint": "^13.3.3",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-preset-ja-spacing": "^2.3.0",
"textlint-rule-preset-ja-technical-writing": "^8.0.0",
"textlint-rule-preset-jtf-style": "^2.3.13",
"textlint-rule-prh": "^5.3.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6",
"tyscan": "^0.3.2"
},
"dependencies": {
"jspdf": "^2.5.1"
}
}