forked from tomchentw/react-toastr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.69 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
{
"name": "react-toastr",
"version": "2.8.3",
"description": "React.js toastr component",
"main": "lib/index.js",
"files": [
"lib/",
"src/lib",
"AUTHORS",
"CHANGELOG.md"
],
"scripts": {
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"pretest": "npm run lint",
"test:once": "cross-env CI=true npm test",
"build:app": "react-scripts build",
"clean": "rimraf lib",
"lint": "cross-env NODE_ENV=test eslint .",
"prebuild:lib": "npm run lint && npm run clean",
"build:lib": "cross-env NODE_ENV=production babel src/lib --out-dir lib",
"precommit:lib": "npm run build:lib",
"commit:lib": "git add -A && git commit -m 'chore(lib): compile from src/lib using babel'",
"precommit:app": "npm run build:app",
"commit:app": "git add -A && git commit -m 'docs: compile from src/app with react-scripts'",
"prerelease": "npm run commit:lib && npm run commit:app",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchentw/react-toastr"
},
"keywords": [
"React.js",
"React",
"react-component",
"toastr",
"alert",
"toast",
"message",
"popup",
"jQuery"
],
"author": {
"name": "tomchentw",
"email": "developer@tomchentw.com",
"url": "https://github.com/tomchentw"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tomchentw/react-toastr/issues"
},
"homepage": "https://tomchentw.github.io/react-toastr/",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "6.1.2",
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-transform-flow-comments": "^6.8.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-app": "^0.2.1",
"babel-preset-stage-0": "^6.5.0",
"codeclimate-test-reporter": "^0.3.3",
"cross-env": "^3.1.1",
"eslint": "3.5.0",
"eslint-config-react-app": "0.2.1",
"eslint-plugin-flowtype": "2.18.1",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"jquery": "^3.1.0",
"prismjs": "^1.5.1",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-github-fork-ribbon": "^0.4.4",
"react-scripts": "0.6.1",
"rimraf": "^2.5.4",
"standard-version": "^2.4.0"
},
"peerDependencies": {
"react": "^15.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"element-class": "^0.2.2",
"lodash": "^4.16.1",
"react-addons-update": "^15.0.0",
"react-dom": "^15.0.0"
}
}