-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "simbrief-api",
"version": "0.1.10",
"description": "TypeScript HTTP API wrapper library for Simbrief API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Mike DeVita",
"email": "mike@devita.co"
},
"repository": {
"type": "git",
"url": "https://github.com/VAMSApp/simbrief-api"
},
"scripts": {
"build": "tsc",
"dev": "ts-node --esm src/index.ts",
"test": "mocha --timeout 20000 --require ts-node/register src/**/*.spec.ts",
"test:debug": "tsx test.ts",
"test:watch": "mocha -w --timeout 20000 --require ts-node/register src/**/*.spec.ts",
"prepublishOnly": "npm run build",
"version:patch": "npm --no-git-tag-version version patch",
"version:minor": "npm --no-git-tag-version version minor",
"version:major": "npm --no-git-tag-version version major"
},
"keywords": [
"api",
"http",
"axios",
"typescript",
"wrapper"
],
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/nock": "^10.0.3",
"@types/node": "^20.10.0",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"nock": "^14.0.10",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
},
"files": [
"dist",
"README.md"
]
}