forked from TuyaInc/tuyasmart-home-sdk-react-native
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
74 lines (74 loc) · 1.79 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
{
"version": "1.0.0-RC.2",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"react-native",
"tuyasmart",
"iot",
"tuya"
],
"files": [
"android",
"ios",
"dist",
"RNTuyaSdk.podspec"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"commit": "cz",
"prepare": "husky install"
},
"peerDependencies": {
"react-native": ">=0.61.5"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@owowagency/react-native-tuya",
"description": "React Native bindings for the Tuya SDK",
"homepage": "https://github.com/owowagency/react-native-tuya#readme",
"author": "Kees Kluskens",
"module": "dist/react-native-tuya.esm.js",
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/react-native": "^0.61.16",
"@volst/eslint-config": "^4.1.1",
"react-native": "^0.61.5",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5",
"@commitlint/cli": "^18.1.0",
"@commitlint/config-conventional": "^18.1.0",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.0",
"commitizen": "^4.3.0",
"commitlint": "^18.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"semantic-release": "^22.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}