generated from GamingAPI/template-api-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.01 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
68
69
70
71
72
73
{
"name": "@gamingapi/rust-ts-public-api",
"description": "TypeScript public API wrapper for rust",
"version": "0.7.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && npm run docs",
"test:integration": "mocha -r ts-node/register tests/integration/**/*.spec.ts --exit --timeout 10000",
"docs": "npm run docs:markdown",
"docs:markdown": "jsdoc2md lib/index.js -f lib/**/*.js > API.md",
"generate:assets": "npm run build && npm run docs",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"prepublishOnly": "npm run generate:assets"
},
"dependencies": {
"nats": "^2.4.0"
},
"devDependencies": {
"ts-node": "^10.4.0",
"@types/mocha": "^9.0.0",
"@types/chai": "4.2.22",
"@types/node": "13.9.5",
"@types/klaw-sync": "^6.0.1",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"jsdoc-to-markdown": "^6.0.1",
"typescript": "4.5.2",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"semantic-release": "^17.0.4"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "Jonas Lagoni ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GamingAPI/rust-ts-public-api/issues"
},
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"homepage": "https://github.com/GamingAPI/rust-ts-public-api#readme",
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}