-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "forest",
"version": "1.0.0",
"description": "simple vault library aimed for Bareksa environment usage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"doc": "typedoc ./lib/index.ts --out docs",
"build": "tsc",
"install": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bareksa/forest-js.git"
},
"keywords": [
"vault",
"forest",
"bareksa"
],
"author": "Tigor Hutasuhut",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Bareksa/forest-js/issues"
},
"homepage": "https://github.com/Bareksa/forest-js#readme",
"dependencies": {
"@types/node": "^14.14.31",
"axios": "^0.21.1",
"typescript": "^4.1.5"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"nock": "^13.0.7",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.28"
}
}