-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "@99xt/first-born",
"version": "1.1.8",
"description": "React Native UI Framework",
"main": "index.js",
"scripts": {
"test": "jest",
"pretty": "prettier --write --tab-width 4 \"**/*.{js,jsx,json}\"",
"precommit": "lint-staged && npm run test"
},
"keywords": [
"React",
"React",
"Native",
"UI",
"Elements"
],
"author": "Sameeha Rahman",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/99xt/first-born.git"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"create-react-class": "^15.6.3",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-react-native": "^18.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-native": "^0.59.3",
"react-native-vector-icons": "^6.4.2",
"react-test-renderer": "^16.8.6"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.{js,jsx,json}": [
"npm run pretty",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"bugs": {
"url": "https://github.com/99xt/first-born/issues"
},
"homepage": "https://github.com/99xt/first-born#readme"
}