UNPKG

715 BJSONView Raw
1{
2 "name": "vscode-uri",
3 "author": "Microsoft",
4 "version": "0.0.6",
5 "description": "The URI implementation that is used by VS Code and its extensions",
6 "main": "lib/index.js",
7 "typings": "./lib/index",
8 "scripts": {
9 "compile": "tsc && tsc -p spec/tsconfig.json",
10 "test": "npm run compile && mocha --ui tdd spec/",
11 "prepublish": "npm run test"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/Microsoft/vscode-uri.git"
16 },
17 "license": "MIT",
18 "bugs": {
19 "url": "https://github.com/Microsoft/vscode-uri/issues"
20 },
21 "homepage": "https://github.com/Microsoft/vscode-uri#readme",
22 "devDependencies": {
23 "mocha": "^2.5.3",
24 "typescript": "1.8.10"
25 }
26}