-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 KB
/
package.json
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
{
"name": "@amnesia-js/core",
"version": "1.2.3",
"description": "Javascript Client for AmnesiaDB",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"amnesia-db",
"amnesia",
"amnesia-js"
],
"author": "Nikhil Nayak",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/uuid": "^8.3.1",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"uuid": "^8.3.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NikhilCodes/amnesia-js.git"
},
"bugs": {
"url": "https://github.com/NikhilCodes/amnesia-js/issues"
},
"homepage": "https://github.com/NikhilCodes/amnesia-js#readme"
}