-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "@rodrigowpl/react-progress",
"version": "1.0.4",
"description": "Beautiful progress bar with React",
"main": "dist/main.js",
"module": "src/index.js",
"scripts": {
"storybook": "start-storybook -p 6006 -c storybook",
"storybook:build": "cross-env NODE_ENV=production BABEL_ENV=production build-storybook -c storybook -o docs",
"build": "cross-env BABEL_ENV=production webpack --progress --config webpack.config -p",
"pub": "npm publish --access=public",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RodrigoWP/react-progress.git"
},
"keywords": [
"React",
"styled-components"
],
"author": "Rodrigo Wippel",
"license": "MIT",
"bugs": {
"url": "https://github.com/RodrigoWP/react-progress/issues"
},
"homepage": "https://github.com/RodrigoWP/react-progress#readme",
"jest": {
"collectCoverageFrom": [
"src/*.js",
"!src/index.js",
"!src/progress.story.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/config/setup-tests.js"
]
},
"devDependencies": {
"@storybook/react": "^3.4.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"jest": "^22.4.3",
"webpack": "^4.7.0",
"webpack-cli": "^2.1.2"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^3.2.6"
}
}