Files
create-1/package.json
2021-05-30 00:11:56 +00:00

81 lines
2.3 KiB
JSON

{
"name": "@open-wc/create",
"version": "0.37.141",
"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.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/register": "^7.13.16",
"@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.27.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-lit": "^1.4.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"
}
}