-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "ui-address-card",
"version": "1.0.0",
"description": "UI card for displaying address data using React & Bootstrap",
"main": "dist/index.js",
"publishConfig": {
"access": "restricted"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js"
]
},
"scripts": {
"test": "cls && react-scripts test --coverage --env=jsdom",
"start": "webpack --watch",
"build": "webpack"
},
"author": "Chris Moran",
"license": "ISC",
"peerDependencies": {
"bootstrap": "^4.1.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-scripts": "^1.1.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.1.3",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"path": "^0.12.7",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "^1.1.5",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
}
}