-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "vscode-ext-localisation",
"version": "1.1.0",
"description": "Localisation for VSCode Extensions using package.nls.json files",
"author": "Sketchbuch",
"bugs": {
"url": "https://github.com/sketchbuch/vscode-ext-localisation/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/sketchbuch/vscode-ext-localisation#readme",
"keywords": [
"ext",
"extension",
"localisation",
"localization",
"nls",
"translation",
"vsc",
"vscode"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sketchbuch/vscode-ext-localisation.git"
},
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist/*",
"compile": "tsc --p ./",
"lint:js": "eslint --config ./.eslintrc.js --fix --max-warnings=0 './src/**/*.ts'",
"lint:prettier": "prettier --write --config ./.prettierrc.json './src/**/*.ts'",
"lint:ts": "tsc --noEmit --p ./",
"lint": "pnpm lint:ts && pnpm lint:js && pnpm lint:prettier",
"prepublishOnly": "pnpm clean && pnpm compile",
"test": "jest --config=./config/jest/jest.js"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"dependencies": {
"path": "^0.12.7"
}
}