-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.1 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
60
61
62
63
64
65
{
"name": "@neptunelabs/fsi-server-api-client",
"version": "1.0.99",
"description": "API client for NeptuneLabs FSI Server",
"homepage": "https://github.com/neptunelabs/fsi-server-api-client-js#readme",
"scripts": {
"tsc": "tsc",
"watch-ts": "tsc -w",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/Version.ts",
"build-mod": "npm run prebuild && node make.js build",
"build": "npm run prebuild && webpack",
"test-integration": "mocha -r ts-node/register -r tsconfig-paths/register ./test test/src/integration/**.ts",
"test-unit": "mocha -r ts-node/register -r tsconfig-paths/register test/src/unit/**.ts",
"test-operation": "mocha -r ts-node/register -r tsconfig-paths/register test/src/optest.ts",
"test-translation": "mocha -r ts-node/register -r tsconfig-paths/register test/src/translations.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neptunelabs/fsi-server-api-client-js.git"
},
"keywords": [
"NeptuneLabs",
"FSI Server",
"API"
],
"author": {
"name": "NeptuneLabs GmbH",
"url": "https://www.neptunelabs.com/"
},
"bugs": {
"url": "https://github.com/neptunelabs/fsi-server-api-client-js/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/bytes": "^3.1.5",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.9.2",
"@types/ungap__url-search-params": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"chai": "^6.2.0",
"json-schema": "^0.4.0",
"mocha": "^11.7.4",
"nock": "^14.0.10",
"prettier": "^3.6.2",
"shelljs": "^0.10.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"axios": "^1.13.1",
"bytes": "^3.1.2"
}
}