-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.34 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
{
"name": "md2urdu",
"displayName": "md2urdu",
"publisher": "vivek",
"description": "converts any text in .md file to urdu",
"version": "1.1.1",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.md2urdu"
],
"main": "./out/lib/extension.js",
"contributes": {
"commands": [
{
"command": "extension.md2urdu",
"title": "converts any text in .md file to urdu"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"test:jest": "jest",
"prettier": "prettier --write src/**/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier",
"pre-push": "npm run test:jest"
}
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@types/vscode": "^1.52.0",
"glob": "^7.1.6",
"husky": "^4.3.7",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"tslint": "^5.20.1",
"typescript": "^4.1.3",
"vscode-test": "^1.4.1"
},
"dependencies": {
"@vitalets/google-translate-api": "git://github.com/vkedwardli/google-translate-api.git"
}
}