-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "gettext-extractor-svelte",
"version": "5.1.0",
"description": "gettext-extractor for svelte files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE.md",
"README.md"
],
"scripts": {
"watch": "tsc -w -p src/",
"build": "tsc -p src/",
"lint": "eslint '{src,tests}/**/*.ts'",
"lint:format": "eslint --fix '{src,tests}/**/*.ts'",
"prettier": "prettier --config .prettierrc.js '{src,tests}/**/*.ts' --check",
"prettier:format": "prettier --config .prettierrc.js '{src,tests}/**/*.ts' --write",
"test": "jest --config jest.config.ts",
"prepare": "husky install",
"publish": "npm publish",
"publish:inspect": "npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/floratmin/gettext-extractor-svelte.git"
},
"directories": {
"test": "tests"
},
"keywords": [
"i18n",
"gettext",
"svelte"
],
"author": "Florian Murat Koch <[email protected]>",
"license": "MIT",
"dependencies": {
"@floratmin/svelte-fragment-divider": "^4.5.0",
"gettext-extractor": "^3.8.0",
"pofile": "^1.1.4",
"svelte": "^4.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}