Files
open-wc/packages/es-dev-server/package.json
CircleCI d136a81bf3 chore: release new versions
- @open-wc/building-rollup@0.14.1
 - @open-wc/demoing-storybook@1.0.3
 - es-dev-server@1.25.1
 - @open-wc/karma-esm@2.10.3
 - @open-wc/testing-karma-bs@1.3.3
 - @open-wc/testing-karma@3.2.3
2019-11-20 23:17:40 +00:00

122 lines
4.6 KiB
JSON

{
"name": "es-dev-server",
"version": "1.25.1",
"publishConfig": {
"access": "public"
},
"description": "Development server for modern web apps",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/es-dev-server"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/",
"main": "./dist/es-dev-server.js",
"bin": {
"es-dev-server": "./dist/cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "babel src --out-dir dist --copy-files --include-dotfiles",
"generate-certificates": "node scripts/generate-certificates.js",
"prepublishOnly": "npm run build && ../../scripts/insert-header.js",
"start:babel": "yarn build && node dist/cli.js -c demo/babel/server.js",
"start:base-path": "yarn build && node dist/cli.js -c demo/base-path/server.js",
"start:compatibility": "yarn build && node dist/cli.js -c demo/compatibility/server.js",
"start:compatibility:max": "yarn build && node dist/cli.js -c demo/compatibility/server.js --compatibility max",
"start:compatibility:min": "yarn build && node dist/cli.js -c demo/compatibility/server.js --compatibility min",
"start:compatibility:no-polyfills": "yarn build && node dist/cli.js -c demo/compatibility/server.js --compatibility min --polyfills none",
"start:http2": "yarn build && node dist/cli.js -c demo/http2/server.js",
"start:import-map": "yarn build && node dist/cli.js -c demo/import-map/server.js",
"start:node-resolve": "yarn build && node dist/cli.js -c demo/node-resolve/server.js",
"start:performance": "yarn build && node dist/cli.js -c demo/performance/server.js",
"start:root-dir": "yarn build && node dist/cli.js --root-dir demo/static/ --open",
"start:static": "yarn build && node dist/cli.js --open demo/static/",
"start:transformers": "yarn build && node dist/cli.js -c demo/response-transformers/server.js",
"start:typescript": "yarn build && node dist/cli.js -c demo/typescript/server.js",
"test": "npm run test:node",
"test:node": "mocha test/**/*.test.js test/*.test.js --require @babel/register",
"test:update-snapshots": "mocha test/**/*.test.js test/*.test.js --require @babel/register --update-snapshots"
},
"files": [
".self-signed-dev-server-ssl.cert",
".self-signed-dev-server-ssl.key",
"dist"
],
"keywords": [
"server",
"http-server",
"polyfill"
],
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-dynamic-import": "^7.7.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-syntax-numeric-separator": "^7.2.0",
"@babel/plugin-syntax-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@open-wc/building-utils": "^2.10.4",
"@types/minimatch": "^3.0.3",
"browserslist": "^4.7.2",
"browserslist-useragent": "^3.0.2",
"camelcase": "^5.3.1",
"caniuse-api": "^3.0.0",
"caniuse-lite": "^1.0.30001008",
"chokidar": "^3.0.0",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"debounce": "^1.2.0",
"deepmerge": "^3.2.0",
"es-module-lexer": "0.3.9",
"get-stream": "^5.1.0",
"is-stream": "^2.0.0",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-etag": "^3.0.0",
"koa-static": "^5.0.0",
"lru-cache": "^5.1.1",
"minimatch": "^3.0.4",
"opn": "^5.4.0",
"path-is-inside": "^1.0.2",
"portfinder": "^1.0.21",
"resolve": "^1.11.1",
"strip-ansi": "^5.2.0",
"useragent": "^2.3.0",
"whatwg-url": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-private-methods": "^7.6.0",
"@babel/plugin-transform-modules-systemjs": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@babel/register": "^7.7.0",
"@types/koa": "^2.0.48",
"@types/koa-static": "^4.0.1",
"@types/lru-cache": "^5.1.0",
"@types/node-fetch": "^2.3.7",
"@types/request": "^2.48.1",
"abort-controller": "^3.0.0",
"chai": "^4.2.0",
"koa-proxies": "^0.8.1",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0",
"lodash-es": "^4.17.15",
"mocha": "^6.0.0",
"node-fetch": "^2.6.0",
"request": "^2.88.0",
"selfsigned": "^1.10.4",
"sinon": "^7.4.1",
"uuid": "^3.3.2"
}
}