-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.53 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-native-amount-input",
"version": "0.0.0-development",
"description": "React Native JS-only amount (decimal) input component",
"keywords": [
"react native",
"amount",
"currency",
"inputaccessoryview",
"alka"
],
"homepage": "https://github.com/alkafinance/react-native-amount-input#readme",
"bugs": {
"url": "https://github.com/alkafinance/react-native-amount-input/issues"
},
"license": "MIT",
"author": "Ayan Yenbekbay <ayan@alka.app>",
"files": [
"dist/"
],
"main": "dist/index.js",
"react-native": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/alkafinance/react-native-amount-input.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"typecheck": "tsc --noEmit --pretty",
"lint": "eslint --ext .js,.ts,.tsx --cache .",
"test": "run-p --silent --print-label typecheck lint",
"bootstrap": "yarn --cwd example && yarn",
"build": "rm -rf dist && yarn tsc --pretty --declaration --outDir dist",
"example": "yarn --cwd example",
"prepublishOnly": "yarn build",
"presemantic-release": "yarn build",
"semantic-release": "semantic-release"
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e",
"pre-push": "yarn test"
}
},
"lint-staged": {
"**/*.{js,ts,tsx,json,yml,yaml}": [
"prettier --write",
"git add"
],
"**/*.{js,ts,tsx}": [
"eslint --ext .js,.ts,.tsx --cache --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {},
"devDependencies": {
"@alkafinance/eslint-config": "^1.0.1",
"@alkafinance/eslint-config-react": "^1.0.0",
"@alkafinance/eslint-config-typescript": "^1.0.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/react": "16.8.23",
"@types/react-native": "0.60.2",
"eslint": "5.10.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"semantic-release": "^15.13.18",
"typescript": "^3.5.3",
"utility-types": "^3.7.0"
}
}