-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "@pleak/react-perf-monitor",
"description":
"Performance monitoring for React and React Native apps with Pleak.",
"version": "0.1.4",
"license": "BSD-2-Clause",
"main": "lib/index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run build",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --fix --ext .js ./src",
"test": "jest",
"test:watch": "jest --watch",
"precommit": "lint-staged"
},
"dependencies": {
"cross-fetch": "^2.2.1",
"fbjs": "^0.8.16",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-watch": "^4.3.1"
},
"files": ["src", "lib", "ios", "android"],
"keywords": ["react", "react-native", "performance"]
}