forked from wix-incubator/react-native-newrelic
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 1.8 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
{
"name": "react-native-newrelic",
"version": "1.1.1",
"description": "New Relic wrapper for React Native",
"main": "index.js",
"scripts": {
"build": "BABEL_ENV='test' babel src -d lib",
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "BABEL_ENV='test' node 'scripts/JasmineUnitRunner.js'",
"xcode": "open ./ios/RNNewRelic.xcodeproj"
},
"peerDependencies": {
"react-native": "*"
},
"dependencies": {
"lodash": "^4.11.1"
},
"devDependencies": {
"app-root-path": "latest",
"babel-cli": "latest",
"babel-core": "latest",
"babel-eslint": "latest",
"babel-polyfill": "latest",
"babel-preset-es2015": "latest",
"babel-preset-react": "latest",
"babel-preset-stage-0": "latest",
"babel-register": "latest",
"eslint": "latest",
"eslint-plugin-babel": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-native": "latest",
"jasmine": "latest",
"jasmine-reporters": "latest",
"jasmine-spec-reporter": "latest",
"jasmine-expect": "latest",
"proxyquire": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/react-native-newrelic.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/react-native-newrelic/issues"
},
"homepage": "https://github.com/wix/react-native-newrelic#readme",
"keywords": [
"React",
"Native",
"New",
"Relic",
"Logger"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"nativePackage": true,
"babel": {
"env": {
"test": {
"presets": [
"es2015",
"react",
"stage-0"
],
"retainLines": true,
"compact": true,
"comments": false,
"sourceMaps": false
}
}
}
}