-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"name": "dotup-ts-ssml-builder",
"version": "1.0.3",
"description": "Typed ssml builder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./",
"postpublish": "git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags",
"commit-release": "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",
"release": "npm run clean-build && npm run test && git push && npm run gh-pages && npm publish",
"clean-dist": "rimraf dist",
"clean-build": "rimraf dist && npm run build",
"test": "node node_modules/mocha/bin/mocha --require ts-node/register test/*.test.ts --reporter spec",
"docs": "typedoc --mode file --out docs src --exclude \"**/*+(index|.spec|.e2e).ts\"",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"npm-publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotupNET/dotup-ts-ssml-builder.git"
},
"keywords": [
"typescript",
"library",
"ssml",
"builder",
"alexa"
],
"author": "Peter Ullrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotupNET/dotup-ts-ssml-builder/issues"
},
"homepage": "https://github.com/dotupNET/dotup-ts-ssml-builder#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^6.0.2",
"dotup-ts-git-wrapper": "^1.0.0",
"gulp": "^4.0.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-gh-pages": "^0.5.4",
"gulp-typedoc": "^2.2.2",
"gulp-mocha": "^6.0.0",
"del": "^4.0.0",
"cross-spawn": "^6.0.5",
"gh-pages": "^2.0.1",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3",
"typedoc": "^0.14.2",
"typescript": "^3.3.3",
"tslint": "^5.14.0",
"tslint-microsoft-contrib": "^6.1.0"
}
}