-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@side/fortifyjs",
"version": "0.0.0-development",
"description": "A platform-agnostic library for generating security headers for your web application.",
"license": "MIT",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"jsnext:main": "./esm/index.js",
"engines": {
"node": "^20"
},
"files": [
"dist",
"esm"
],
"scripts": {
"lint": "biome lint",
"types:check": "tsc --noEmit",
"test": "vitest",
"test:cov": "yarn test --coverage",
"build": "yarn build:lib && yarn build:esm",
"build:lib": "rimraf dist && tsc -m commonjs",
"build:esm": "rimraf esm && tsc -m ESNext --outDir esm",
"prepare": "husky",
"format": "biome format --write",
"format:check": "biome format"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@side/commitlint-config": "1.1.0",
"@types/node": "20.17.10",
"@vitest/coverage-v8": "2.1.8",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reside-eng/fortifyjs.git"
},
"bugs": {
"url": "https://github.com/reside-eng/fortifyjs/issues"
},
"author": {
"name": "Side Platform Engineering",
"url": "https://github.com/reside-eng"
},
"prettier": "@side/prettier-config",
"lint-staged": {
"*.{json,md,yaml,yml,js,ts}": [
"biome check --no-errors-on-unmatched --write"
]
},
"packageManager": "yarn@4.5.3"
}