forked from schiehll/react-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.71 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.71 KB
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
{
"name": "react-alert",
"description": "A simple react alert component",
"version": "2.4.0",
"author": "Reinaldo Schiehll <rn.schiehll@gmail.com>",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/schiehll/react-alert.git"
},
"keywords": [
"react",
"alert",
"react-alert",
"toaster",
"react-toaster",
"react-component"
],
"scripts": {
"build": "babel src --out-dir dist --ignore *.spec.js,*.snap",
"build:watch": "babel src --out-dir dist --watch --ignore *.spec.js,*.snap",
"lint": "standard --fix",
"test": "standard --fix && jest --coverage --no-cache",
"test:watch": "standard --fix && jest --watch --coverage --no-cache"
},
"peerDependencies": {
"react": "^16.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.13.1",
"enzyme": "^2.8.2",
"jest-cli": "^19.0.2",
"prop-types": "^15.5.8",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.1.1",
"standard": "^10.0.3"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"standard": {
"parser": "babel-eslint",
"globals": [
"beforeEach",
"test",
"describe",
"expect",
"jest"
],
"ignore": [
"dist"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"dependencies": {
"glamor": "^2.20.24",
"glamorous": "^3.13.1",
"nanoid": "^0.2.2",
"react-transition-group": "^1.1.2"
}
}