mirror of
https://github.com/jlengrand/create-1.git
synced 2026-03-10 08:11:25 +00:00
81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
|
"name": "@open-wc/create",
|
|
"version": "0.37.174",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "Easily setup all the tools of Open Web Components.",
|
|
"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",
|
|
"release": "standard-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.1",
|
|
"command-line-args": "^5.1.1",
|
|
"dedent": "^0.7.0",
|
|
"deepmerge": "^4.2.2",
|
|
"ejs": "^3.1.6",
|
|
"glob": "^7.1.7",
|
|
"prompts": "^2.4.1",
|
|
"semver": "^7.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.14.5",
|
|
"@babel/core": "^7.14.6",
|
|
"@babel/preset-env": "^7.14.7",
|
|
"@babel/register": "^7.14.5",
|
|
"@open-wc/building-rollup": "^1.10.0",
|
|
"@open-wc/eslint-config": "^4.3.0",
|
|
"babel-plugin-transform-dynamic-import": "^2.1.0",
|
|
"chai": "^4.3.4",
|
|
"chai-fs": "^2.0.0",
|
|
"eslint": "^7.30.0",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-plugin-import": "^2.23.4",
|
|
"eslint-plugin-lit": "^1.5.1",
|
|
"eslint-plugin-lit-a11y": "^1.0.1",
|
|
"eslint-plugin-wc": "^1.3.0",
|
|
"lit-element": "^2.5.1",
|
|
"mocha": "^8.4.0",
|
|
"onchange": "^7.1.0",
|
|
"prettier": "^2.2.1",
|
|
"standard-version": "^9.3.0"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"arrowParens": "avoid",
|
|
"printWidth": 100,
|
|
"trailingComma": "all"
|
|
}
|
|
}
|