-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.2 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
62
{
"name": "hn-designsystem",
"private": true,
"workspaces": [
"npm/*"
],
"version": "1.0.0",
"description": "NPM pakke og dokumentasjon for Helsenorges designsystem",
"repository": {
"type": "git",
"url": "https://github.com/helsenorge/designsystem.git"
},
"homepage": "https://helsenorge.design",
"author": "Helsenorge",
"maintainers": [
"ROX"
],
"license": "MIT",
"scripts": {
"build": "lerna run build",
"version:latest": "lerna version",
"version:beta": "lerna version --preid=beta --allow-branch=*/* --force-publish=*",
"publish:latest": "lerna publish from-git --yes",
"publish:beta": "lerna publish from-git --dist-tag=beta --yes",
"clean:npm": "npm-run-all clean:packages clean:root",
"clean:packages": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"postversion": "npm run changelog",
"changelog": "conventional-changelog --config changelog.config.js --infile CHANGELOG.md --same-file --release-count 0 --skip-unstable --tag-prefix v --outputUnreleased false",
"postchangelog": "git commit --include CHANGELOG.md -m \"docs: oppdater CHANGELOG\"",
"prepare": "lerna link --force-local",
"pre-commit": "lint-staged",
"validate": "npm-run-all typecheck prettier eslint stylelint",
"prettier": "lerna run prettier",
"prettier:fix": "lerna run prettier:fix",
"eslint": "lerna run eslint",
"eslint:fix": "lerna run eslint:fix",
"stylelint": "lerna run stylelint",
"stylelint:fix": "lerna run stylelint:fix",
"typecheck": "lerna run typecheck",
"test": "lerna run test --concurrency=1 --stream -- run --coverage",
"posttest": "node ./scripts/aggregate-packages-coverage.cjs && nyc report --reporter lcov"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@helsenorge/eslint-config": "^32.0.0",
"@lerna/legacy-package-management": "^8.1.8",
"conventional-changelog-cli": "^4.1.0",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.1",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1"
},
"engines": {
"node": "^20.0.0",
"npm": ">=10.0.0"
}
}