forked from translate-tools/domtranslator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 KB
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
{
"name": "domtranslator",
"version": "0.1.0",
"license": "Apache-2.0",
"author": "Robert Vitonsky <https://github.com/vitonsky>",
"homepage": "https://github.com/translate-tools/domtranslator",
"repository": {
"type": "git",
"url": "https://github.com/translate-tools/domtranslator"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest",
"test-fast": "TEST_FAST=true vitest",
"build": "rm -rf dist && gulp",
"release": "npm run build && cd dist && npm publish",
"prettify": "prettier --write \"{*,**/*}.{ts,tsx,js,jsx}\" && eslint --fix \"{*,**/*}.{ts,tsx,js,jsx}\"",
"lint": "prettier \"{*,**/*}.{ts,tsx,js,jsx}\" --check && eslint --max-warnings 0 \"{*,**/*}.{ts,tsx,js,jsx}\"",
"packages:upgrade": "npm-check-updates -u",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"del": "^7.0.0",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gulp": "^4.0.2",
"gulp-clean-package": "^0.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^8.0.3",
"intersection-observer": "^0.12.2",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"merge-stream": "^2.0.0",
"npm-check-updates": "^16.10.10",
"prettier": "^2.8.8",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}