-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "druxt-module-template",
"version": "0.0.0",
"description": "Starting point for a Druxt module. Conforms to the Druxt repository standard.",
"keywords": [
"druxt",
"module"
],
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.ssr.js",
"import": "./dist/index.esm.js"
},
"./components/*": "./dist/components/*"
},
"main": "dist/index.ssr.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"build:watch": "siroc build --watch",
"changeset": "changeset",
"example:assemble": "cd example/drupal && .devtools/assemble",
"example:dev": "npm --prefix example/nuxt run dev",
"example:generate": "npm --prefix example/nuxt run generate",
"example:info": "cd example/drupal && .devtools/info",
"example:install": "npm --prefix example/nuxt install",
"example:provision": "cd example/drupal && .devtools/provision",
"example:setup": "npm run example:assemble && npm run example:provision && npm run example:start && npm run example:install",
"example:start": "cd example/drupal && .devtools/start",
"example:stop": "cd example/drupal && .devtools/stop",
"hooks:install": "git config core.hooksPath .githooks",
"lint": "npm run lint:js && npm run lint:format && npm run lint:md && npm run lint:cspell && npm run lint:private && npm run lint:attribution && npm run lint:knip",
"lint:attribution": "bash .gitlab/scripts/check-attribution.sh",
"lint:audit": "npm audit --omit=dev --audit-level=high",
"lint:commit": "commitlint",
"lint:cspell": "cspell lint --no-progress --no-must-find-files --gitignore --dot \"**/*.{js,mjs,vue,json,jsonc,md,yml,yaml}\"",
"lint:format": "prettier --check \"**/*.{js,mjs,vue,json,jsonc,md,yml,yaml}\"",
"lint:format:fix": "prettier --write \"**/*.{js,mjs,vue,json,jsonc,md,yml,yaml}\"",
"lint:js": "eslint --ext .js,.mjs,.vue src test scripts",
"lint:knip": "knip --include dependencies,unlisted --no-config-hints",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:private": "node scripts/lint-private-refs.mjs",
"lint:prose": "PROSE_LINT_GLOB='!{.changeset,example/drupal}/**' bash .gitlab/scripts/lint-prose.sh --all",
"lint:prose:install": "bash .gitlab/scripts/install-vale.sh .vale/bin .vale/styles",
"postinstall": "node scripts/postinstall.mjs",
"serve": "node scripts/serve.js example/nuxt/dist 3000",
"test": "jest",
"test:e2e": "playwright test --grep-invert @visual",
"test:visual": "playwright test --grep @visual",
"test:visual:update": "playwright test --grep @visual --update-snapshots",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@changesets/cli": "2.25.2",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@playwright/test": "1.49.1",
"@vue/test-utils": "1.3.3",
"babel-core": "7.0.0-bridge.0",
"cspell": "7.3.9",
"druxt": "0.21.0",
"esbuild-jest": "0.5.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-vue": "9.32.0",
"jest": "27.5.1",
"jest-environment-jsdom": "27.5.1",
"jest-junit": "14.0.1",
"knip": "2.43.0",
"markdownlint-cli2": "0.10.0",
"prettier": "3.3.3",
"regenerator-runtime": "0.14.1",
"siroc": "0.16.0",
"vue": "2.7.16",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.7.16"
},
"packageManager": "npm@8.19.4",
"engines": {
"node": ">=16.20.1"
},
"publishConfig": {
"access": "public"
},
"jest-junit": {
"outputDirectory": "reports/junit",
"outputName": "junit.xml"
}
}