-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
48
{
"name": "@studio/fail",
"version": "1.8.1",
"description": "Fail with an Error object and a conventional code property",
"main": "lib/fail.js",
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"watch": "mocha --watch",
"build": "tsc --project tsconfig.pack.json",
"clean": "rimraf --glob '!(node_modules)/**/*.d.ts'",
"prepack": "npm run build",
"postpack": "npm run clean",
"preversion": "npm run lint && npm run prettier:check && npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish",
"prettier:check": "prettier --check '**/*.{js,md}'",
"prettier:write": "prettier --write '**/*.{js,md}'",
"prepare": "husky"
},
"author": "Maximilian Antoni <[email protected]>",
"homepage": "https://github.com/javascript-studio/fail",
"eslintConfig": {
"extends": "@studio"
},
"devDependencies": {
"@sinonjs/referee-sinon": "^12.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^6.0.0",
"@studio/tsconfig": "^1.3.0",
"eslint": "^8.56.0",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.0",
"typescript": "^5.3.3"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"license": "MIT"
}