-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.52 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.52 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
{
"name": "caritat",
"private": true,
"packageManager": "yarn@4.9.2+sha224.b8e0b161ae590950fbda696e6f3ca071362768e5280c5fbfdadf064b",
"version": "1.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodejs/caritat.git"
},
"devDependencies": {
"@types/eslint": "^9",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.0.0",
"eslint": "^9.2.0",
"typescript": "^5.1.3",
"typescript-eslint": "^8.34.0"
},
"scripts": {
"test:lint": "eslint .",
"test:types": "tsc --noEmit",
"test:unit": "node --test --experimental-global-webcrypto --experimental-strip-types",
"test:coverage": "node --test --experimental-global-webcrypto --experimental-strip-types --experimental-test-coverage",
"test": "yarn test:lint && yarn test:types && yarn test:unit",
"build": "tsc --build",
"deploy:cli": "rm -rf packages/cli/dist && tsc --build --force && cp README.md packages/cli/. && yarn workspace @node-core/caritat-cli npm publish --access public",
"deploy:core": "rm -rf packages/core/dist && tsc --build --force && cp README.md packages/core/. && yarn workspace @node-core/caritat npm publish --access public",
"deploy:crypto": "rm -rf packages/crypto/dist && tsc --build --force && yarn workspace @node-core/caritat-crypto npm publish --access public",
"deploy:web": "yarn workspace web-ui deploy",
"web:dev": "yarn workspace web-ui dev",
"web:deploy": "yarn workspace web-ui deploy"
},
"type": "module",
"workspaces": [
"packages/*"
]
}