-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
92 lines (92 loc) · 2.82 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
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
{
"name": "@open-wc/create",
"version": "0.38.151",
"publishConfig": {
"access": "public"
},
"description": "Easily setup all the tools of Open Web Components.",
"engines": {
"node": ">=18.20.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/create.git"
},
"bugs": {
"url": "https://github.com/open-wc/create/issues"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/create",
"bin": {
"create-open-wc": "./dist/create.js"
},
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist --copy-files --include-dotfiles",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --ext .ts,.js,.mjs,.cjs .",
"lint:prettier": "prettier \"**/*.{ts,js,mjs,cjs,md}\" --check --ignore-path .eslintignore",
"format": "eslint --ext .ts,.js,.mjs,.cjs --fix && prettier \"**/*.{ts,js,mjs,cjs,md}\" --check --ignore-path .eslintignore --write",
"release": "commit-and-tag-version && git push --follow-tags origin master && npm publish",
"start": "npm run build && node ./dist/create.js",
"test": "npm run test:node",
"test:node": "mocha --require @babel/register",
"test:update-snapshots": "node -r @babel/register ./test/update-snapshots.js",
"test:watch": "onchange 'src/**/*.js' 'test/**/*.js' -- npm run test --silent"
},
"files": [
"dist"
],
"keywords": [
"open-wc",
"owc",
"generator",
"starter-app"
],
"dependencies": {
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.2",
"dedent": "^1.5.3",
"deepmerge": "^4.3.1",
"ejs": "^3.1.10",
"glob": "^8.1.0",
"prompts": "^2.4.2",
"semver": "^7.6.2"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/register": "^7.24.6",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@open-wc/eslint-config": "^12.0.3",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@web/rollup-plugin-html": "^2.3.0",
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"chai": "^4.4.1",
"chai-fs": "^2.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lit": "^1.14.0",
"eslint-plugin-lit-a11y": "^4.1.3",
"eslint-plugin-wc": "^2.1.0",
"lit": "^3.1.4",
"lit-element": "^4.0.6",
"mocha": "^10.6.0",
"onchange": "^7.1.0",
"prettier": "^3.3.2",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-workbox": "^8.1.0",
"commit-and-tag-version": "^12.4.1"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 100,
"trailingComma": "all"
}
}