-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 KB
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
{
"name": "progressbar",
"version": "1.0.0",
"description": "using progress html5 element",
"main": "index.js",
"scripts": {
"test": "karma start",
"build": "karma start --single-run && npm run eslint && webpack --config webpack.production.config.js --mode=production",
"dev": "webpack --config webpack.development.config.js --mode=development",
"serve": "http-server dist --port 8080 & npm run dev",
"start": "http-server dist",
"eslint": "eslint src/"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.3.0",
"eslint": "^6.7.2",
"eslint-loader": "^3.0.3",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.12.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.5.0",
"jsdoc": "^3.6.3",
"karma": "^6.3.14",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.1",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^2.0.1",
"karma-jasmine-matchers": "^4.0.2",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"node-sass": "^7.0.0",
"postcss-cli": "^6.1.3",
"postcss-custom-properties": "^9.0.2",
"postcss-loader": "^3.0.0",
"puppeteer": "^2.0.0",
"sass-loader": "^8.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"core-js": "^3.6.0",
"element-closest-polyfill": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/friedt/progressbar.git"
},
"author": "pepijn friederichs",
"license": "ISC",
"bugs": {
"url": "https://github.com/friedt/progressbar/issues"
},
"homepage": "https://github.com/friedt/progressbar#readme"
}