forked from schiehll/react-alert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "react-alert",
"description": "A simple react alert component",
"version": "1.0.14",
"author": "Reinaldo Schiehll <rn.schiehll@gmail.com>",
"main": "./dist/alert.js",
"repository": {
"type": "git",
"url": "https://github.com/schiehll/react-alert.git"
},
"keywords": [
"react",
"alert",
"react-alert",
"toaster",
"react-toaster",
"react-component"
],
"dependencies": {
"classnames": "^2.1.3"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.2",
"css-loader": "^0.14.5",
"jest-cli": "^0.6.0",
"postcss-loader": "^0.6.0",
"react": "^0.14.2",
"react-addons-css-transition-group": "^0.14.2",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.2",
"style-loader": "^0.12.3",
"stylus": "^0.51.1",
"stylus-loader": "^1.2.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-umd-external": "^1.0.2"
},
"scripts": {
"test": "jest"
},
"jest": {
"testDirectoryName": "tests",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
]
}
}