forked from buildo/react-cookie-banner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.3 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-cookie-banner",
"version": "4.0.0",
"description": "React Cookie banner which can be automatically dismissed with a scroll. Because fuck The Cookie Law, that's why.",
"main": "lib",
"typings": "lib",
"files": [
"lib",
"src",
"examples",
"styleguide",
"typings"
],
"scripts": {
"test": "jest",
"build": "rm -rf lib && mkdir lib && tsc",
"preversion": "npm run test",
"prepublish": "npm run build",
"start": "styleguidist server",
"typecheck": "tsc --noEmit",
"release-version": "smooth-release"
},
"repository": {
"type": "git",
"url": "https://github.com/buildo/react-cookie-banner.git"
},
"keywords": [
"react",
"react-component",
"cookie",
"cookies",
"banner",
"eu",
"law"
],
"author": "Francesco Cioria <francesco@buildo.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildo/react-cookie-banner/issues"
},
"homepage": "https://github.com/buildo/react-cookie-banner",
"dependencies": {
"classnames": "2.2.5",
"lodash.omit": "^4.5.0",
"react-cookie": "^2.1.2"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/enzyme": "2.8.6",
"@types/jest": "^22",
"@types/lodash.omit": "^4.5.3",
"@types/node": "9.6.4",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.3.10",
"babel-loader": "^7.1.2",
"babel-preset-buildo": "^0.1.1",
"css-loader": "^0.28.5",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"file-loader": "^1.1.5",
"jest": "^22",
"node-sass": "^4.8.3",
"progress-bar-webpack-plugin": "^1.10.0",
"raw-loader": "^0.5.1",
"react": "^16",
"react-docgen-typescript": "^1.1.0",
"react-dom": "^16",
"react-styleguidist": "^6.0.33",
"react-test-renderer": "^16.2.0",
"sass-loader": "^6.0.6",
"smooth-release": "^8.0.4",
"ts-jest": "^22",
"ts-loader": "^2.3.3",
"typescript": "^2.8.1",
"webpack": "3.5.5"
},
"peerDependencies": {
"react": ">= 0.12.x"
},
"jest": {
"setupFiles": [
"<rootDir>/test/setup.js"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.*[.](test))[.](tsx?)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}