This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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": "@loadsmart/blocks",
"version": "1.4.2",
"description": "Loadsmart's React Native Components",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/loadsmart/blocks.git"
},
"author": {
"name": "Gustavo Barbosa",
"email": "gustavo@loadsmart.com"
},
"bugs": {
"url": "https://github.com/loadsmart/blocks/issues"
},
"homepage": "https://github.com/loadsmart/blocks#readme",
"files": [
"lib/**/*",
"assets/**/*"
],
"dependencies": {
"styled-components": "^4.4.1"
},
"peerDependencies": {
"react": "^16.6.1",
"react-native": "^0.59.5"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/react-native": "^0.57.64",
"@types/react-test-renderer": "^16.8.2",
"@types/styled-components": "^4.1.22",
"husky": "^2.4.1",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-native": "^0.59.9",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"yarn format",
"git add"
]
}
}