-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.82 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": "qub-vscode",
"version": "1.1.1",
"description": "A collection of common data structures and functions that make creating Visual Studio Code extensions easier.",
"main": "main",
"typings": "main",
"files": [
"*.js",
"*.js.map",
"*.d.ts"
],
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "npm run setup && npm run build && cpy output/sources/* .",
"postpublish": "rimraf *.js && rimraf *.js.map && rimraf *.d.ts",
"test": "mocha --colors --require source-map-support/register --ui tdd output/tests/",
"coverage": "nyc npm test && open-cli output/coverage/index.html",
"travis-test": "npm run setup && npm run build && nyc --reporter=text-lcov npm test | coveralls",
"setup": "npm install && node ./node_modules/vscode/bin/install"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"report-dir": "output/coverage/",
"temp-directory": "output/.nyc_output/",
"exclude": [
"output/tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/danschultequb/qub-typescript-vscode.git"
},
"keywords": [
"qub"
],
"author": "Dan Schulte",
"license": "MIT",
"bugs": {
"url": "https://github.com/danschultequb/qub-typescript-vscode/issues"
},
"homepage": "https://github.com/danschultequb/qub-typescript-vscode#readme",
"engines": {
"vscode": "^1.14.0"
},
"devDependencies": {
"@types/mocha": "2.2.41",
"@types/node": "8.0.22",
"coveralls": "2.13.1",
"cpy-cli": "1.0.1",
"mocha": "3.5.0",
"nyc": "11.1.0",
"open-cli": "1.0.5",
"rimraf": "2.6.1",
"source-map-support": "0.4.15",
"typescript": "2.4.2"
},
"dependencies": {
"moment": "2.18.1",
"qub": "1.4.0",
"qub-filesystem": "1.0.3",
"qub-telemetry": "1.0.1",
"vscode": "1.1.4"
}
}