-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
45
46
47
{
"name": "json-activity-log",
"version": "1.0.0",
"description": "Writes results and logs in json file format",
"scripts": {
"test": "node ./test/test.js",
"build": "tsup",
"publish:package": "npm run build && npm publish"
},
"homepage": "https://github.com/damartripamungkas/json-activity-log",
"repository": {
"type": "git",
"url": "https://github.com/damartripamungkas/json-activity-log.git"
},
"bugs": {
"url": "https://github.com/damartripamungkas/json-activity-log/issues"
},
"keywords": [
"json",
"json-activity",
"json-activity-log",
"log-json",
"json-log",
"backend",
"nodejs",
"typescript",
"javascript"
],
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"author": "damartripamungkas",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.4.0",
"tsup": "^8.1.0"
},
"dependencies": {
"dayjs": "^1.11.11"
}
}