-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.66 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
74
75
{
"name": "@bugsplat/js-api-client",
"description": "JS client for consuming the BugSplat API",
"version": "9.5.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky install",
"pretest": "npm run lint:fix",
"test": "ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.spec.json",
"test:teamcity": "ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.spec.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"e2e": "ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.e2e.json",
"e2e:teamcity": "ts-node -r tsconfig-paths/register node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.teamcity.e2e.json",
"release": "npm run build && npm publish --access public",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json && tsconfig-replace-paths -p tsconfig.json -o ./dist/cjs -s ./src",
"build:esm": "tsc -p tsconfig.esm.json && tsconfig-replace-paths -p tsconfig.json -o ./dist/esm -s ./src",
"watch:cjs": "tsc -p tsconfig.cjs.json -w",
"watch:esm": "tsc -p tsconfig.esm.json -w",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/BugSplat-Git/bugsplat-js-api-client.git"
},
"author": "@bobbyg603",
"license": "MIT",
"bugs": {
"url": "https://github.com/BugSplat-Git/bugsplat-js-api-client/issues"
},
"homepage": "https://github.com/BugSplat-Git/bugsplat-js-api-client#readme",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"dependencies": {
"argument-contracts": "^1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "^5.1.5",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"jasmine": "^5.5.0",
"jasmine-reporters": "^2.5.2",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-replace-paths": "^0.0.14",
"typescript": "^5.7.2"
}
}