Files
webawesome/package.json

63 lines
1.8 KiB
JSON
Raw Normal View History

2020-01-03 22:46:15 -05:00
{
"name": "shoelace",
2020-05-30 08:12:37 -04:00
"version": "1.0.0-beta.1",
2020-03-11 22:17:20 -04:00
"description": "A forward-thinking library of Web Components.",
2020-01-03 22:46:15 -05:00
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/shoelace/shoelace.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
2020-06-04 10:56:44 -04:00
"start": "concurrently --kill-others \"npm run dev\" \"node serve.js\"",
"dev": "stencil build --dev --docs --watch --serve --port 3333 --no-open",
"build": "stencil build --docs",
2020-05-30 08:12:37 -04:00
"lint": "eslint src/**/*{.ts,.tsx}",
2020-01-03 22:46:15 -05:00
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
2020-06-02 08:47:46 -04:00
"generate": "stencil generate",
"postinstall": "node postinstall.js"
2020-01-03 22:46:15 -05:00
},
"devDependencies": {
2020-04-15 09:51:20 -04:00
"@stencil/eslint-plugin": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
2020-06-04 10:56:44 -04:00
"browser-sync": "^2.26.7",
"chalk": "^4.0.0",
2020-03-04 17:33:49 -05:00
"concurrently": "^5.1.0",
"del": "^5.1.0",
2020-04-15 09:51:20 -04:00
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
2020-06-04 10:56:44 -04:00
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^1.0.4",
2020-06-01 16:59:12 -04:00
"husky": "^4.2.5",
2020-03-04 17:33:49 -05:00
"recursive-copy": "^2.0.10",
"through2": "^3.0.1",
2020-01-03 22:46:15 -05:00
"workbox-build": "4.3.1"
},
"license": "MIT",
2020-01-08 00:02:03 -05:00
"dependencies": {
"@popperjs/core": "^2.1.1",
"@sphinxxxx/color-conversion": "^2.2.2",
2020-06-04 10:56:44 -04:00
"@stencil/core": "^1.14.0",
"@stencil/sass": "^1.1.1",
"color": "^3.1.2",
"feather-icons": "^4.28.0",
2020-03-25 22:07:22 -04:00
"normalize.css": "^8.0.1",
2020-03-24 20:36:53 -04:00
"resize-observer-polyfill": "^1.5.1",
2020-05-21 09:26:32 -04:00
"tippy.js": "^5.2.1"
2020-06-01 16:59:12 -04:00
},
"husky": {
"hooks": {
2020-06-01 16:59:48 -04:00
"pre-commit": "npm run lint"
2020-06-01 16:59:12 -04:00
}
2020-01-08 00:02:03 -05:00
}
2020-01-03 22:46:15 -05:00
}