-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.43 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
{
"name": "web-components-ui-elements",
"version": "2.0.0",
"description": "UI elements library based on web components",
"main": "index.js",
"scripts": {
"readme": "doctoc ./README.md",
"precommit": "npm run readme",
"test": "karma start config/karma.conf.js",
"test:prod": "karma start config/karma.conf.prod.js",
"build": "webpack --config config/webpack.prod.js",
"build:watch": "webpack --config config/webpack.prod.js --watch",
"serve": "webpack-dev-server --config config/webpack.dev.js"
},
"author": "Yonatan Kra",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.3",
"css-loader": "^1.0.0",
"doctoc": "^1.4.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.2.0",
"karma": "^3.0.0",
"karma-webpack": "^3.0.5",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-karma-jasmine": "^3.0.4"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.1.3",
"webpack-merge": "^4.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/yonatankra/web-components-ui-elements.git"
}
}