-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
55
56
57
58
59
{
"name": "fshub-api",
"version": "4.1.3",
"description": "TypeScript HTTP API wrapper library for FSHub REST API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/VAMSApp/fshub-api"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist",
"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 clean && npm run build",
"release:patch:publish": "npm version patch && npm publish",
"release:minor:publish": "npm version minor && npm publish",
"release:major:publish": "npm version major && npm publish"
},
"keywords": [
"fshub",
"api",
"typescript",
"wrapper",
"rest"
],
"_moduleAliases": {
"@types": "types/*",
"@api": "api/*"
},
"author": {
"name": "Mike DeVita",
"email": "mike@devita.co"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^5.2.1",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"mocha": "^11.7.1",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^17.2.1"
}
}