-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "@nascentdigital/errors",
"version": "1.2.1",
"description": "A reusable set of Javascript / Typescript errors for browser and node applications.",
"keywords": [
"error",
"javascript",
"typescript",
"browser",
"node"
],
"author": "Simeon de Dios <simeon@nascentdigital.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nascentdigital/errors.git"
},
"bugs": {
"url": "https://github.com/nascentdigital/errors/issues"
},
"homepage": "https://github.com/nascentdigital/errors#readme",
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@jest/test-sequencer": "^29.7.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.3",
"typescript": "^5.4.5"
}
}