-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 972 Bytes
/
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
{
"name": "spur-errors",
"description": "Common error builder utility for Node.js. Contains common error types, and stack trace tracking to support more detailed error messages.",
"version": "1.0.8",
"main": "./src/SpurErrors",
"author": {
"name": "Agustin Colchado",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"spur",
"spur-framework",
"error",
"exceptions"
],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest test/",
"test:dev": "npm run test -- --watch"
},
"bugs": {
"url": "https://github.com/opentable/spur-errors/issues"
},
"homepage": "https://github.com/opentable/spur-errors",
"repository": {
"type": "git",
"url": "git://github.com/opentable/spur-errors.git"
},
"dependencies": {},
"devDependencies": {
"eslint": "8.57.0",
"jest": "29.7.0"
}
}