generated from druxt/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.23 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
{
"name": "@druxt-contrib/config-pages",
"version": "0.1.3",
"keywords": [
"config",
"configuration",
"decoupled",
"drupal",
"druxt",
"jsonapi",
"json:api",
"module",
"nuxt"
],
"repository": "github:druxt-contrib/druxt-config-pages",
"exports": {
".": {
"require": "./dist/index.ssr.js",
"import": "./dist/index.esm.js"
}
},
"main": "dist/index.ssr.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"build:watch": "siroc build --watch",
"changeset": "changeset",
"lint": "eslint --ext .js,.vue src",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@changesets/cli": "2.25.2",
"@vue/test-utils": "2.2.3",
"babel-core": "7.0.0-bridge.0",
"druxt": "^0.21.0",
"esbuild-jest": "0.5.0",
"eslint": "8.28.0",
"eslint-plugin-nuxt": "3.2.0",
"jest": "27.5.1",
"jest-junit": "^15.0.0",
"siroc": "0.16.0",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.7.14"
},
"peerDependencies": {
"druxt": "^0.21.0"
},
"publishConfig": {
"access": "public"
}
}