-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.72 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
{
"name": "dynamic-tabs",
"version": "2.0.0",
"description": "A lightweight JavaScript library for tab UI elements, styled (somewhat) by material design principles.",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production --config build/webpack.prod.config.js",
"demo": "webpack --mode production --config build/webpack.demo.config.js",
"dev": "webpack-dev-server --mode development --config build/webpack.dev.config.js",
"docs": "documentation build src/index.js -f md --shallow --markdown-toc=false --np -a undefined -a private -o=docs/docs.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dchenk/dynamic-tabs.git"
},
"keywords": [
"dynamic-tabs",
"tabs",
"ui",
"javascript"
],
"author": "Dmitriy Cherchenko (Wider Webs LLC)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dchenk/dynamic-tabs/issues"
},
"homepage": "https://github.com/dchenk/dynamic-tabs#readme",
"dependencies": {
"resize-observer-polyfill": "^1.5.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"documentation": "^8.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-string-replace-plugin": "^1.1.0",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
}
}