-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1014 Bytes
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
{
"name": "react-es6-progressbar.js",
"version": "1.1.0",
"description": "Implementation of progressbar.js in React with ES6",
"main": "build/index.js",
"homepage": "https://github.com/ronaldroe/react-es6-progressbar.js",
"license": "MIT",
"private": false,
"keywords": [
"react",
"progressbar.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ronaldroe/react-es6-progressbar.js.git"
},
"dependencies": {
"progressbar.js": "^1.0.1",
"react": "^16.3.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack"
},
"author": {
"name": "Ronald Roe"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}