forked from xnimorz/rprogress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "@hh.ru/rprogress",
"version": "3.1.3",
"description": "React progress bar for a heavy ajax sites",
"main": "./lib/index.js",
"author": "Nikita Mostovoy <[email protected]> (http://xnim.ru)",
"scripts": {
"test": "mocha --compilers js:babel-register ./tests/index",
"build": "npm run babel && npm run css",
"example": "npm run build && webpack --config webpack.example.js",
"example-css-modules": "npm run build && webpack --config webpack.example.css-modules.config.js",
"example-server": "http-server -p 8080 -c-1",
"babel": "babel ./src --out-dir ./lib",
"css": "cpx './src/**/*.css' ./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/hhru/rprogress.git"
},
"keywords": [
"progress",
"progress-bar",
"ajax-loader",
"loader",
"react-progress",
"react-progress-bar",
"ajax-heavy"
],
"license": "MIT",
"dependencies": {
"e2": "^2.0.0",
"subscribe-event": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-transform-react-jsx": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"cpx": "^1.2.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.4.5",
"postcss-loader": "^0.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.13"
}
}