-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
51
{
"name": "scope-logger",
"version": "1.3.0",
"description": "Logs a variable and a sequence of scopes through which it's accessed",
"author": "Kaung Zin Hein <kaungzinhein113@gmail.com> (https://www.kaungzinhein.me/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Zen-cronic/scope-logger.git"
},
"homepage": "https://github.com/Zen-cronic/scope-logger/#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16"
},
"type": "module",
"files": [
"CHANGELOG.md",
"dist/",
"!dist/__tests__",
"!dist/types.js"
],
"scripts": {
"build:watch": "tsc --watch",
"check:tar": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"dev:pg": "nodemon --watch \"pg/**\" --ext \"js,ts,json,mjs,cjs\" --exec \"ts-node\"",
"dev": "nodemon --watch \"dev/**\" --ext \"js,ts,json,mjs,cjs\" --exec \"ts-node\"",
"test:jest": "jest --watchAll",
"test:ci": "jest --ci",
"test:js": "jest --watchAll --config jest.config.dist.js",
"test": "set NODE_OPTIONS=-r ts-node/register && jest --watchAll",
"test:ts:ci": "export NODE_OPTIONS='-r ts-node/register' && jest --ci"
},
"keywords": [
"log",
"scope",
"scope log",
"variable"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"jest": "^29.7.0",
"jest-to-log": "^1.0.0",
"nodemon": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}