forked from Salt-PepperEngineering/react-native-nordic-dfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "@converge-io/react-native-nordic-dfu-2022",
"version": "3.6.0",
"description": "Nordic Device Firmware Update for React Native",
"main": "index.js",
"url": "https://github.com/converge-io/react-native-nordic-dfu-2022.git",
"repository": {
"type": "git",
"url": "https://github.com/converge-io/react-native-nordic-dfu-2022.git"
},
"scripts": {
"test": "echo \"No test specified\"",
"precommit": "lint-staged",
"document": "documentation readme --readme-file README.md -s \"API\" -g"
},
"keywords": [
"react-native",
"dfu",
"nordic"
],
"author": "Pilloxa <recruitment@pilloxa.com>",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"documentation": "^13.2.5",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"index.js": [
"npm run document",
"git add README.md"
]
},
"types": "./index.d.ts"
}