-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "@vscode/textbuffer",
"version": "1.0.0",
"description": "The underling text buffer used in VS Code/Monaco",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "npm run build && npm run watch",
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run build",
"test": "jest --forceExit",
"fasttest": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-textbuffer.git"
},
"author": "Visual Studio Code Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-textbuffer/issues"
},
"homepage": "httpshttps://github.com/microsoft/vscode-textbuffer#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^27.0.6",
"kind-of": ">=6.0.3",
"minimist": ">=0.2.1",
"node-notifier": ">=8.0.1",
"set-value": ">=2.0.1",
"ts-jest": "^27.0.5",
"typescript": "^3.4.2",
"yargs-parser": ">=13.1.2"
}
}