forked from Pilloxa/react-native-nordic-dfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 963 Bytes
/
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
{
"name": "react-native-nordic-dfu",
"version": "3.2.1",
"description": "Nordic Device Firmware Update for React Native",
"main": "index.js",
"url": "https://github.com/Pilloxa/react-native-nordic-dfu",
"repository": "Pilloxa/react-native-nordic-dfu",
"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 <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react-native": ">= 0.45.1"
},
"devDependencies": {
"documentation": "^4.0.0-rc.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"index.js": [
"npm run document",
"git add README.md"
]
},
"types": "./index.d.ts"
}