forked from juliancwirko/react-s-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.02 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
{
"name": "react-s-alert",
"version": "1.4.1",
"description": "Alerts / Notifications for React with rich configuration options",
"repository": {
"type": "git",
"url": "https://github.com/juliancwirko/react-s-alert.git"
},
"author": "Julian Ćwirko",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliancwirko/react-s-alert/issues"
},
"homepage": "https://github.com/juliancwirko/react-s-alert",
"keywords": [
"react-component",
"react",
"alert",
"alerts",
"react-alert",
"react-alerts",
"notifications",
"react-notifications",
"errors",
"react-errors",
"toastr"
],
"options": {
"mocha": "--require scripts/mocha_runner lib/**/__tests__/**/*.js"
},
"scripts": {
"prepublishOnly": "babel --plugins transform-es2015-modules-umd lib --ignore __tests__ --out-dir ./dist",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"prop-types": "^15.5.4",
"react": "^15.5.0 || ^16.0.0",
"react-dom": "^15.5.0 || ^16.0.0",
"react-test-renderer": "^15.5.4 || ^16.0.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"prop-types": "^15.5.4"
},
"dependencies": {
"babel-runtime": "^6.23.0"
}
}