material-web/package.json

80 lines
3.3 KiB
JSON
Raw Normal View History

{
"name": "material-components-web-components",
"private": true,
"description": "Material Components Web Components",
"license": "Apache-2.0",
"scripts": {
"clean": "del-cli packages/*/node_modules packages/*/package-lock.json && npm run clean:typescript && npm run clean:styles && npm run clean:scripts",
"clean:typescript": "npm run build:typescript -- --clean",
"clean:styles": "del-cli packages/*/src/*-css.ts",
"clean:scripts": "del-cli scripts/tsc-out",
"dev": "polyserve --npm --module-resolution=node",
2019-07-31 22:26:47 +03:00
"format": "clang-format --version; find . -name '*.ts' | grep -v node_modules | xargs clang-format -style=file -i",
"lint:imports": "node scripts/check-imports.js",
"lint": "npm run lint:typescript && npm run lint:lit",
2019-05-08 23:23:02 +03:00
"lint:typescript": "eslint \"packages/**/*.ts\"",
"lint:lit": "lit-analyzer \"packages/**/*.ts\" --strict",
"test": "npm run build:tests && karma-proxy start --single-run",
2019-08-22 04:26:55 +03:00
"test:debug": "npm run test -- --single-run false --browsers Chrome",
"test:bench": "npm run build:tests && node test/lib/benchmark/cli.js",
"postinstall": "./scripts/bootstrap.sh",
"build": "npm run build:styling && npm run build:typescript -- --verbose",
"build:styling": "./scripts/build-styling.sh",
"build:typescript": "tsc --build packages/**/tsconfig.json",
2019-07-24 03:30:49 +03:00
"build:tests": "tsc --build test/tsconfig.json && tsc --build test/tsconfig-node.json",
"build:scripts": "tsc --project scripts/tsconfig.json",
"update-gh-pages": "npm install && ./scripts/publish-demos.sh",
"static-urlify-readme-images": "npm run build:scripts && node scripts/tsc-out/static-urlify-readme-images.js packages/*/README.md",
"prepack": "npm run build && npm run static-urlify-readme-images",
2019-08-14 21:24:51 +03:00
"watch": "npm run build && node scripts/watcher.js",
2019-08-21 23:34:23 +03:00
"watch:tests": "tsc --build test/tsconfig.json -w & tsc --build test/tsconfig-node.json -w"
},
"devDependencies": {
2019-08-21 05:48:54 +03:00
"@types/chai": "^4.2.0",
2019-07-24 03:30:49 +03:00
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
2019-08-21 05:48:54 +03:00
"@types/mocha": "^5.2.7",
2019-07-14 23:30:26 +03:00
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
2019-04-10 22:06:55 +03:00
"@webcomponents/webcomponentsjs": "^2.2.8",
"chai": "^4.2.0",
2019-07-31 22:15:16 +03:00
"clang-format": "^1.2.4",
"command-line-args": "^5.1.1",
"command-line-usage": "^5.0.5",
"del-cli": "^1.1.0",
"dom5": "^3.0.0",
2019-05-08 23:23:02 +03:00
"eslint": "^5.16.0",
2019-07-14 23:30:26 +03:00
"eslint-config-google": "^0.13.0",
2019-05-08 23:23:02 +03:00
"eslint-plugin-mocha": "^5.3.0",
2019-08-01 00:34:45 +03:00
"eslint-plugin-wc": "^1.2.0",
"glob": "^7.1.1",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
2019-08-21 23:34:23 +03:00
"koa": "^2.8.1",
"koa-esm-transform": "^1.0.0-pre.1",
2019-08-21 23:34:23 +03:00
"koa-karma-proxy": "^1.0.0-pre.4",
"koa-mount": "^4.0.0",
"koa-node-resolve": "^1.0.0-pre.6",
"koa-static": "^5.0.0",
"lerna": "^3.13.1",
"lit-analyzer": "^1.1.7",
"mocha": "^5.0.0",
"node-sass-import": "^2.0.1",
"node-watch": "^0.6.0",
"parse5": "^5.1.0",
"polyserve": "^0.27.15",
"sass": "^1.17.4",
"shady-css-parser": "^0.1.0",
"sinon": "^7.3.1",
"tachometer": "^0.4.13",
"typescript": "^3.4.1"
},
"dependencies": {}
}