Files
webawesome/package.json

53 lines
1.6 KiB
JSON
Raw Normal View History

2020-01-03 22:46:15 -05:00
{
"name": "shoelace",
"version": "0.0.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": {
"build": "stencil build --docs",
2020-04-04 00:24:38 -04:00
"install": "node postinstall.js",
2020-03-04 17:33:49 -05:00
"start": "concurrently --kill-others \"npm run stencil\" \"gulp\" \"npm run docsify\"",
"stencil": "stencil build --dev --docs --watch --no-open",
"docsify": "docsify serve ./docs --open",
2020-01-03 22:46:15 -05:00
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
2020-04-15 09:51:20 -04:00
"generate": "stencil generate",
"lint": "eslint src/**/*{.ts,.tsx}"
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-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-03-04 17:33:49 -05:00
"gulp": "^4.0.2",
"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",
2020-05-07 16:40:49 -04:00
"@stencil/core": "^1.12.7",
"@stencil/sass": "^1.1.1",
2020-05-07 08:14:21 -04:00
"color-convert": "^2.0.1",
"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-01-11 23:59:59 -05:00
"tippy.js": "^5.1.3"
2020-01-08 00:02:03 -05:00
}
2020-01-03 22:46:15 -05:00
}