-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 765 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 765 Bytes
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
{
"name": "byteroo",
"version": "1.4.2",
"description": "Store data and configuration in Node.js",
"main": "./lib/index.js",
"scripts": {
"test": "npm run build && jest",
"build": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JMax45/byteroo.git"
},
"keywords": [
"nodejs",
"configuration",
"data"
],
"author": "jz-software",
"license": "MIT",
"bugs": {
"url": "https://github.com/JMax45/byteroo/issues"
},
"homepage": "https://github.com/JMax45/byteroo#readme",
"devDependencies": {
"@jest/types": "^27.4.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"lib/"
]
}