-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.21 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "workspacejson-standard",
"private": true,
"type": "module",
"packageManager": "pnpm@9.0.0",
"description": "Specification, schema and deterministic reference behavior for workspace.json",
"homepage": "https://workspacejson.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/workspacejson/standard.git"
},
"bugs": {
"url": "https://github.com/workspacejson/standard/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@workspacejson/rules": "workspace:*",
"@workspacejson/spec": "workspace:*"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm --filter @workspacejson/spec build && pnpm -r typecheck",
"check:architecture": "node scripts/check-architecture.mjs",
"check:architecture:test": "node scripts/check-architecture.test.mjs",
"check:schema": "node scripts/verify-schema-provenance.mjs",
"check:examples": "node scripts/validate-examples.mjs",
"check:conformance": "node scripts/check-producer-conformance.mjs",
"check:conformance:test": "node scripts/check-producer-conformance.test.mjs",
"check:corpus": "node scripts/check-corpus.mjs",
"check:packed": "node scripts/check-packed-path-identity.mjs",
"check:docs": "node scripts/check-docs.mjs",
"check:adr": "node scripts/adr-index.mjs",
"check:adr:test": "node scripts/adr-index.test.mjs",
"adr:index": "node scripts/adr-index.mjs --write",
"check:release-identity": "node scripts/verify-release-identity.mjs",
"check:release-identity:test": "node scripts/verify-release-identity.test.mjs",
"check:release-credential": "node scripts/verify-npm-publish-access.mjs",
"release:boundary": "node scripts/release-boundary.mjs",
"release:verify-packs": "pnpm --filter @workspacejson/spec exec node ../../scripts/verify-package-tarball.mjs && pnpm --filter @workspacejson/rules exec node ../../scripts/verify-package-tarball.mjs",
"release:verify-packs:test": "node scripts/verify-package-tarball.test.mjs",
"release:verify-consumer": "node scripts/verify-consumer-install.mjs",
"release:verify-published": "node scripts/verify-published.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.31.0"
}
}