forked from devalentino/prebid-mobile-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "prebid-mobile-react-native",
"main": "lib/index.js",
"version": "0.0.5",
"private": false,
"keywords": [
"advertising",
"auction",
"header bidding",
"prebid",
"react native"
],
"repository": {
"type": "git",
"url": "https://github.com/devalentino/prebid-mobile-react-native.git"
},
"scripts": {
"test": "jest",
"build": "npm run clear && ./node_modules/babel-cli/bin/babel.js -s inline -d lib -w src",
"prepublish": "npm run build",
"clear": "rm -rf ./lib; mkdir ./lib"
},
"dependencies": {
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "4.0.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "21.2.1",
"jest-fetch-mock": "^1.3.3"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}