This repository has been archived by the owner on Dec 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
68 lines (68 loc) · 1.97 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
{
"name": "react-notification",
"version": "6.8.5",
"description": "Snackbar notifications for React",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"prebuild": "npm test",
"build": "node_modules/.bin/babel src -d dist",
"pretest": "npm run lint",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec --recursive --timeout 5000 test/setup.js test/**/*.js",
"lint": "node_modules/.bin/eslint src/**/*.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "https+git://github.com/pburtchaell/react-notification"
},
"keywords": [
"react",
"component",
"react-component",
"components",
"ui",
"notify",
"notification",
"notification stack",
"snackbar"
],
"author": "Patrick Burtchaell <patrick@pburtchaell.com> (pburtchaell.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pburtchaell/react-notification/issues"
},
"homepage": "https://github.com/pburtchaell/react-notification",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@types/react": "^16.4.2",
"@types/react-dom": "^16.0.6",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.0",
"cheerio": "^0.22.0",
"enzyme": "^2.9.1",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jsdom": "^11.11.0",
"mocha": "^5.2.0",
"react": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^15.6.2",
"sinon": "^2.4.1",
"typescript": "^2.9.2",
"typescript-definition-tester": "0.0.6"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}