-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.67 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.3.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 . --ext .js,.ts",
"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": "^17.6.1",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "^3.7.4",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"dotenv": "^10.0.0",
"eslint": "^8.57.0",
"husky": "^7.0.4",
"jasmine": "^3.7.0",
"jasmine-reporters": "^2.4.0",
"semantic-release": "^21.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.2",
"tsconfig-replace-paths": "^0.0.14",
"typescript": "^5.4.5"
}
}