-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.27 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.27 KB
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
{
"name": "dotup-vscode-api-extensions",
"version": "0.1.1",
"description": "template for typescript libraries",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"release": "npm run clean-build && npm run test-mocha && npm run gh-pages && npm publish",
"clean-dist": "rimraf dist",
"clean-build": "rimraf dist && tsc",
"test-mocha": "node node_modules/mocha/bin/mocha --require ts-node/register test/*.test.ts --reporter spec",
"test-jasmine": "jasmine-ts",
"docs": "typedoc --mode file --out docs src --exclude \"**/*+(index|.spec|.test|.e2e).ts\"",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"postversion": "git push && git push --tags",
"git-tag": "git tag echo %npm_package_version%",
"postpublish": "git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags",
"postpublishX": "git commit -a -m \"Release v%npm_package_version%\" && git push && git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags",
"npm-publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotupNET/dotup-vscode-api-extensions.git"
},
"keywords": [
"vscode",
"api",
"extension"
],
"author": "Peter Ullrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotupNET/dotup-vscode-api-extensions/issues"
},
"homepage": "https://github.com/dotupNET/dotup-vscode-api-extensions#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/mkdirp": "^0.5.2",
"chai": "^4.2.0",
"gh-pages": "^2.0.1",
"grunt": "^1.0.3",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-newer": "^1.3.0",
"grunt-nodemon": "^0.4.2",
"grunt-run": "^0.8.1",
"grunt-ts": "^6.0.0-beta.22",
"grunt-tslint": "^5.0.2",
"mocha": "^6.0.2",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"tslint-microsoft-contrib": "^6.1.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"mkdirp": "^0.5.1",
"dotup-ts-types": "^0.0.19"
}
}