-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·97 lines (97 loc) · 2.66 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
95
96
97
{
"name": "react-prebid-rubicon",
"version": "1.3.0",
"description": "Library for ad placements with Prebid header bidding in React applications using Rubicon demand manager hosted solution",
"main": "index.js",
"esnext": "index-esnext.js",
"files": [
"src/",
"index.js",
"index-esnext.js"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production webpack",
"deploy": "git add . && git commit -m 'new version' && git push origin master:deploy",
"eslint": "eslint '**/*.js'",
"prettier": "prettier '**/*.js' --write",
"postBuild": "npm run prettier --write && npm run eslint --fix",
"coveralls": "jest --coverage"
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
},
"ignore": [
"index.js"
]
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/src/utils/setupTests.js",
"transformIgnorePatterns": [
"node_modules/(?!(@mt-testutils)/)"
],
"testEnvironmentOptions": {
"url": "http://www.rubiconproject.com/"
},
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/AntoineJac/react-prebid-rubicon.git"
},
"author": "Antoine Jacquemin <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.3.0 <17.0.0"
},
"devDependencies": {
"@mt-testutils/expect-snapshot": "^1.0.5",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"check-prop-types": "^1.1.2",
"coveralls": "^3.0.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.19.0",
"eslint-config-motor-talk": "^5.0.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^0.14.3",
"jest": "^22.4.4",
"lint-staged": "^7.3.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"regenerator-runtime": "^0.11.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.3.0",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"fast-deep-equal": "^2.0.1"
}
}