-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
132 lines (132 loc) · 3.29 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-native-secure-element",
"version": "1.4.0",
"description": "The most secure way to store information on a device.",
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"license": "MIT",
"author": "Marius Reimer <[email protected]> (https://github.com/reime005)",
"contributors": [
{
"name": "Marius Reimer",
"email": "[email protected]",
"url": "https://github.com/reime005"
}
],
"repository": {
"type": "git",
"url": "[email protected]:reime005/react-native-secure-element.git"
},
"scripts": {
"analyze": "npx tsc --noEmit",
"lint": "npx eslint ./ --ignore-pattern example --ignore-pattern node_modules --fix --quiet",
"shipit": "np",
"test": "echo 'no tests defined'",
"precommit": "lint-staged && yarn analyze",
"build": "bob build",
"prepare": "yarn build",
"postinstall": "git submodule update --init --recursive",
"commit": "git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"lint-staged": {
"*.ts": [
"yarn lint",
"git add"
]
},
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.56.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/prompt": "^8.2.0",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.5",
"@react-native-community/bob": "^0.7.0",
"@react-native-community/eslint-config": "0.0.5",
"@types/react": "^16.9.9",
"@types/react-native": "^0.60.25",
"commitizen": "^4.0.3",
"eslint": "^6.5.1",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.5.0",
"np": "^5.1.1",
"prettier": "^1.18.2",
"react": "^16.11.0",
"react-native": "^0.61.2",
"semantic-release": "^15.14.0",
"typescript": "^3.6.4"
},
"eslintConfig": {
"extends": "@react-native-community"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"files": [
"/android",
"!/android/build",
"/ios",
"/web",
"src/",
"lib/",
"/*.podspec"
],
"eslintIgnoreConfig": [
"node_modules/",
"coverage/",
"dist/",
"*.ts"
],
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"parser": "typescript"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/release-notes-generator"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
}
}