-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.73 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
{
"name": "react-cheers",
"version": "0.1.0",
"description":
"A toast-management component for React without any dependencies, cheers!",
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"keywords": ["toast", "notification", "alert", "react"],
"author": "Kyle Cesmat <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.46",
"@babel/plugin-transform-object-assign": "^7.0.0-beta.42",
"@babel/polyfill": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-flow": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.42",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "8.0.0-beta.2",
"builder": "^4.0.0",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.8.0",
"eslint-config-formidable": "^3.0.0",
"eslint-config-jest-enzyme": "^6.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.71.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.2",
"jest-environment-enzyme": "^6.0.0",
"jest-enzyme": "^6.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^1.3.0",
"react-test-renderer": "^16.2.0",
"script-ext-html-webpack-plugin": "^2.0.1",
"sinon": "^4.4.2",
"style-loader": "^0.20.3",
"url-loader": "^0.6.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.0.0"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"scripts": {
"preversion": "npm run check",
"version": "npm run build",
"start": "webpack-dev-server --mode development",
"build-demo": "webpack --config webpack.demo.build.js",
"build-babel": "babel src",
"build-es":
"builder run --env \"{\\\"BABEL_ENV\\\":\\\"esm\\\"}\" build-babel -- -d es",
"build-lib": "builder run build-babel -- -d lib",
"build-dist": "webpack --config webpack.dist.config.js --mode production",
"build": "builder concurrent --buffer build-lib build-es",
"build-watch": "builder concurrent build-lib build-es -- --watch",
"lint": "eslint .",
"test": "jest test --config jest.config.js",
"check": "npm run lint && npm run test"
}
}