This repository has been archived by the owner on Nov 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.45 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
{
"name": "generate-index",
"displayName": "generate-index",
"description": "Generate an index file that exports everything from all files in a directory",
"version": "0.2.0",
"license": "MIT",
"publisher": "kingdaro",
"repository": "https://github.com/kingdaro/generate-index",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.generateIndex"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.generateIndex",
"title": "Generate / update index file"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:publish": "vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "jest"
},
"dependencies": {
"fs-extra": "^7.0.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.1",
"@types/node": "^10.5.8",
"jest": "^23.5.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"vscode": "^1.1.18"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": ".+\\.test\\.tsx?$"
}
}