-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "react-native-session-timer-modal",
"version": "1.0.0",
"description": "A customizable session timer modal that times on the background.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"keywords": [
"react-native",
"session",
"timer",
"modal"
],
"author": "thousight",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint-staged": "lint-staged",
"semantic-release": "semantic-release",
"tslint": "tslint '*.{ts,tsx}'",
"test": "jest",
"test:coverage": "yarn test --coverage && open coverage/lcov-report/index.html",
"test:coveralls": "yarn test --coverage --coverageReporters=text-lcov | coveralls"
},
"dependencies": {
"@types/react-native-background-timer": "^2.0.0",
"moment": "^2.24.0",
"react-native-background-timer": "^2.1.1",
"react-native-modal": "^11.0.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.19",
"@types/react-native": "^0.57.40",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"husky": "^2.0.0",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.5",
"react-native": "^0.59.2",
"semantic-release": "^15.13.3",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"typescript": "^3.3.3333"
}
}