-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.11 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.11 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
{
"version": "0.0.0",
"private": true,
"type": "module",
"description": "ACME protocol library and private certificate authority",
"author": "Alejandro Mery <amery@apptly.co>",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean && rimraf node_modules",
"lint": "run-s lint:root && pnpm -r lint",
"lint:check": "run-s lint:root:check && pnpm -r lint:check",
"lint:root": "eslint --fix --ignore-pattern 'packages/*' .",
"lint:root:check": "eslint --ignore-pattern 'packages/*' .",
"precommit": "run-s build lint type-check test",
"prepack": "run-s lint:check && pnpm -r prepack",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"type-check": "pnpm -r type-check"
},
"devDependencies": {
"@poupe/eslint-config": "~0.9.1",
"eslint": "^9.39.4",
"npm-run-all2": "^8.0.4",
"pkg-pr-new": "^0.0.65",
"rimraf": "^6.1.3"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}