-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "baseui-wc-base-component",
"version": "1.0.0-rc2",
"description": "Re-usable base customElement to avoid repeated bootstrap code, flexible to choose own rendering or use hyperHTML/LitHTML/LighterHTML",
"main": "dist/index.js",
"module": "lib/esm/index.js",
"unpkg": "dist/index.js",
"types": "lib/cjs/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dsadhanala/baseui-wc-base-component.git"
},
"keywords": [
"web component",
"customElement",
"baseUI customElement",
"customElement with lit-html",
"customElement with hyper-html",
"ES6 template literals",
"ES6 mixin"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsadhanala/wc-base-component/issues"
},
"homepage": "https://github.com/dsadhanala/wc-base-component#readme",
"files": [
"src/**/*",
"dist/**/*.{js,css,map}",
"lib/**/*"
],
"scripts": {
"prepublishOnly": "npm run release",
"start": "npm run server",
"clean": "shx rm -rf dist lib && shx echo build folders clean!",
"test": "SET NODE_ENV_MODE=test & karma start karma.config.js",
"test:watch": "SET NODE_ENV_MODE=test-watch & karma start karma.config.js",
"tc": "npx tsc --noEmit",
"tcw": "npm run tc -- -w",
"lint": "npx tslint './src/**/*.{js,ts}' --project tsconfig.json",
"lint:fix": "npx tslint './src/**/*.{js,ts}' --fix --project tsconfig.json",
"server": "npm run clean && NODE_ENV=development npx webpack-dev-server --config webpack.dev.js --hot",
"build": "npm run build-dev && npm run build-min",
"build:types": "npx tsc --emitDeclarationOnly",
"build-esm": "npx tsc -m es6 --outDir lib/esm --declarationDir lib/esm",
"build-dev": "SET NODE_ENV=production & webpack --config webpack.prod.js",
"build-min": "SET NODE_ENV=production & webpack --env.min --config webpack.prod.js",
"release": "npm run clean && npm run lint && npm run build:types && npm run build-esm && npm test && npm run build",
"bundleServ": "./node_modules/.bin/live-server --port=1919 --host=0.0.0.0 --open='./demo/'"
},
"dependencies": {
"core-js": "^3.6.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.1",
"@types/sinon": "^7.5.1",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^4.0.4",
"husky": "^4.2.3",
"hyperhtml": "^2.31.6",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lit-html": "^1.1.2",
"live-server": "^1.2.1",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"puppeteer": "^2.1.1",
"shx": "^0.3.2",
"sinon": "^8.1.1",
"source-map-loader": "^0.2.4",
"sourcemap": "^0.1.0",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}