-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 2.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "reprogressbars",
"version": "1.0.1",
"description": "React progress bars",
"main": "lib/index",
"jsnext:main": "es6/index",
"scripts": {
"start": "webpack-dev-server --progress --inline --mode=development --config=docs/webpack.config.js",
"build": "npm run build-cjs && npm run build-es6 && rimraf umd && npm run build-umd && npm run build-min && npm run build-ghpages",
"build-cjs": "rimraf lib && babel ./src -d lib",
"build-es6": "rimraf es6 && babel ./src -d es6 --blacklist=es6.modules",
"build-umd": "webpack --config=webpack.config.js --env=development --mode=development",
"build-min": "webpack --config=webpack.config.js --env=production --mode=production",
"build-ghpages": "webpack --env=production --mode=production --config=docs/webpack.config.js",
"lint": "eslint src/**/*.js",
"test": "NODE_ENV=test ava",
"test-with-coverage": "NODE_ENV=test nyc --all ava",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:nickstanish/reprogressbars.git"
},
"files": [
"*.md",
"demo",
"es6",
"lib",
"umd",
"src"
],
"keywords": [
"react",
"progress",
"bar",
"loading",
"react-component"
],
"author": "Nick Stanish",
"license": "MIT",
"ava": {
"require": [
"babel-register",
"babel-polyfill",
"./test/helpers/setup-browser-env.js"
],
"babel": "inherit"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"shifty": "^2.3.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"browser-env": "^3.2.5",
"codecov": "^3.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"nyc": "^11.6.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"rimraf": "^2.6.2",
"sinon": "^4.5.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.10"
}
}