-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "@airinstitute/deepint-js-sdk",
"version": "1.0.35",
"description": "Deep Intelligence API calls",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/deepintdev/deepint-node-connector"
},
"homepage": "https://github.com/deepintdev/deepint-node-connector#readme",
"scripts": {
"pre": "tsc && node build/tasks_calls.js && node build/workspaces_calls.js && node build/sources_calls.js && node build/visualizations_calls.js && node build/dashboards_calls.js && node build/models_calls.js && node build/alerts_calls.js && node build/emails_calls.js && node build/authentication_calls.js",
"dev": "ts-node-dev src/tasks_calls.ts",
"start": "node build/tasks_calls.js && node build/workspaces_calls.js",
"tsc": "tsc",
"test": "jest",
"build": "tsc --outDir dist --module commonjs"
},
"keywords": [
"deepint",
"api",
"deep intelligence",
"connector",
"node"
],
"author": "Miguel Chaveinte - Deep Intelligence",
"license": "MIT",
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "^28.1.6",
"@types/supertest": "^2.0.12",
"cross-env": "^7.0.3",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.23.7",
"typescript": "4.7.4"
},
"dependencies": {
"@types/node-fetch": "^2.6.2",
"dotenv": "^16.0.1",
"node-fetch": "^2.6.7"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": false
}
}