Files
webawesome/package.json

75 lines
2.2 KiB
JSON
Raw Normal View History

2020-01-03 22:46:15 -05:00
{
2020-07-10 08:18:14 -04:00
"name": "@shoelace-style/shoelace",
2020-07-14 16:13:56 -04:00
"version": "2.0.0-beta.1",
2020-07-06 16:58:51 -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",
"files": [
"dist/",
"loader/"
],
2020-07-11 11:16:04 -04:00
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/claviska"
},
2020-01-03 22:46:15 -05:00
"scripts": {
2020-06-04 10:56:44 -04:00
"build": "stencil build --docs",
2020-07-07 11:19:29 -04:00
"dev": "stencil build --dev --docs --watch --serve --port 4001 --no-open",
2020-05-30 08:12:37 -04:00
"lint": "eslint src/**/*{.ts,.tsx}",
2020-07-02 09:08:17 -04:00
"make-dist": "node make-dist.js",
"make-icons": "node make-icons.js",
2020-07-06 16:58:51 -04:00
"prettier": "npx prettier --write --loglevel warn .",
2020-07-13 08:10:45 -04:00
"postbuild": "npm run make-dist",
"postinstall": "npm run make-icons",
"prebuild": "npm run prettier && npm run lint && npm run make-icons",
"serve": "node dev-server.js",
2020-07-02 09:08:17 -04:00
"start": "concurrently --kill-others \"npm run dev\" \"npm run serve\"",
"test.watch": "stencil test --spec --e2e --watchAll",
"test": "stencil test --spec --e2e",
2020-06-05 07:50:35 -04:00
"version": "npm run build"
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-19 10:58:52 -04:00
"bluebird": "^3.7.2",
2020-07-02 09:08:17 -04:00
"bootstrap-icons": "^1.0.0-alpha5",
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-06-19 10:58:52 -04:00
"download": "^8.0.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",
2020-06-19 10:58:52 -04:00
"front-matter": "^4.0.2",
"glob": "^7.1.6",
2020-06-04 10:56:44 -04:00
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^1.0.4",
2020-06-01 16:59:12 -04:00
"husky": "^4.2.5",
2020-07-06 08:36:39 -04:00
"prettier": "2.0.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",
2020-06-09 10:58:14 -04:00
"resize-observer-polyfill": "^1.5.1"
2020-06-01 16:59:12 -04:00
},
"husky": {
"hooks": {
2020-07-13 08:10:45 -04:00
"pre-commit": "npm run prettier && 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
}