-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "stackspot",
"version": "1.2.0",
"description": "Stackspot API bindings for NodeJS",
"main": "main.mjs",
"types": "main.d.ts",
"type": "module",
"files": [
"main.mjs",
"main.d.ts",
"libs/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"stackspot",
"knowledge",
"source",
"quick",
"command",
"artificial",
"inteligence",
"ai",
"zup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Potentii/stackspot.git"
},
"bugs": {
"url": "https://github.com/Potentii/stackspot/issues"
},
"homepage": "https://github.com/Potentii/stackspot#readme",
"author": "Guilherme Reginaldo Ruella<potentii@gmail.com>",
"license": "MIT",
"scripts": {
"test": "npm run test:all",
"test:all": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:ci": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand --passWithNoTests",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"node-fetch": "3.3.2",
"eventemitter3": "5.0.1"
},
"devDependencies": {
"jest": "30.2.0",
"@types/jest": "30.0.0"
}
}