forked from Hopding/react-native-pdf-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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": "react-native-pdf-lib",
"version": "1.0.0",
"description": "A react native library for handling generating PDFs",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"react-native"
],
"author": "Andrew Dillon",
"license": "Apache-2.0",
"peerDependencies": {},
"repository": "git+https://github.com/Hopding/react-native-pdf-lib.git",
"bugs": {
"url": "https://github.com/Hopding/react-native-pdf-lib/issues"
},
"homepage": "https://github.com/Hopding/react-native-pdf-lib#readme",
"rnpm": {
"assets": [
"./assets"
]
},
"jest": {
"setupFiles": [
"./jest/jest-setup.js"
],
"roots": [
"<rootDir>/js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "4.0.0",
"flow": "^0.2.3",
"flow-bin": "^0.66.0",
"jest": "^22.4.0",
"jest-cli": "^22.4.0"
},
"dependencies": {
"babel-preset-flow": "^6.23.0"
}
}