-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2 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
{
"name": "clock-format-utility",
"version": "0.0.5",
"description": "Utility that can detect clock format (12/24 hour) and can set clock format for moment",
"main": "lib/index.js",
"scripts": {
"test": "eslint src && jest",
"build": "babel src --out-dir lib",
"prepublish": "npm test && npm run build",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertherber/clock-format-utility.git"
},
"keywords": [
"clock",
"format",
"react-native",
"moment",
"utility",
"24",
"12",
"hour"
],
"author": "Robert Herber",
"license": "ISC",
"bugs": {
"url": "https://github.com/robertherber/clock-format-utility/issues"
},
"homepage": "https://github.com/robertherber/clock-format-utility#readme",
"jest": {
"verbose": true,
"resetModules": true,
"collectCoverage": true,
"resetMocks": true,
"testPathIgnorePatterns": [
"lib"
],
"setupTestFrameworkScriptFile": "./setupTests.js",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"files": [
"lib/detect.js",
"lib/moment.js"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-react-native": "^2.0.0",
"eslint": "3",
"eslint-config-airbnb": "15",
"eslint-config-kingstinct-react-native": "^0.0.5",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-react-native": "^2.3.2",
"jest": "^20.0.4",
"moment": "^2.18.1",
"prettier": "^1.5.2",
"react-native-device-info": "^0.10.2"
},
"optionalDependencies": {
"moment": "^2.18.1",
"react-native-device-info": "^0.10.2"
}
}