forked from incrementing/react-native-ntp-sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
{
"name": "@luneo7/react-native-ntp-sync",
"version": "1.0.1",
"description": "Sync time using NTP servers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"link": "npm run build && cd dist && npm link"
},
"repository": {
"type": "git",
"url": "https://github.com/luneo7/react-native-ntp-sync.git"
},
"keywords": [
"react-native",
"native",
"android",
"ios",
"ntp",
"sync",
"clock",
"time",
"date"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/luneo7/react-native-ntp-sync/issues"
},
"homepage": "https://github.com/luneo7/react-native-ntp-sync#readme",
"dependencies": {
"buffer": "^5.6.0",
"react-native-udp": "^4.1.2"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/react-native": "^0.63.50",
"events": "^3.1.0",
"husky": "^5.1.3",
"pretty-quick": "^3.1.0",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}