-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "fsp-nice-error",
"version": "1.3.0",
"description": "A better extension for TS/JS Error Object, brings you better development experience.",
"main": "./dist/cjs/NiceError.js",
"module": "./dist/esm/NiceError.js",
"typings": "./dist/cjs/NiceError.d.ts",
"scripts": {
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig-esm.json",
"build:all": "yarn build:cjs && yarn build:esm",
"pretest:cjs": "yarn build:all",
"test:cjs": "mocha ./test/cjs/*.test.js",
"test:deno": "deno test -A ./test/deno/*.test.ts",
"test:all": "yarn test:cjs && yarn test:deno",
"demo:node": "node ./sample/nodeEnv.js",
"demo:deno": "deno run --allow-read ./sample/denoEnv.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FullStackPlayer/fsp.NiceError.git"
},
"keywords": [
"typescript",
"deno",
"NiceError",
"nodejs"
],
"author": "FullStackPlayer",
"license": "GPL-3.0",
"homepage": "https://github.com/FullStackPlayer/fsp.NiceError",
"dependencies": {},
"devDependencies": {
"mocha": "^10.0.0"
},
"files": [
"/dist",
"/test",
"/sample",
"/src",
"/mod.ts"
]
}