-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "react-native-flexview",
"version": "1.0.0",
"description": "A flexible view that can be scaled in relation to its parent",
"main": "dist/flexview.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aleksion/react-native-flexview.git"
},
"author": "Aleksander Herforth Rendtslev",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aleksion/react-native-flexview/issues"
},
"homepage": "https://github.com/Aleksion/react-native-flexview#readme",
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"scriptPreprocessor": "<rootDir>/node_modules/typescript-babel-jest",
"testRegex": "./.*\\.(test||spec).(ts|tsx|js)$",
"testPathDirs": [
"<rootDir>/src"
]
},
"dependencies": {
"react": "^15.4.2",
"react-native": "^0.41.2",
"react-native-flexview": "^1.0.0"
},
"devDependencies": {
"@types/react": "^15.0.9",
"@types/react-native": "^0.37.11",
"typescript": "next"
}
}