-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"name": "react-native-timer-countdown",
"version": "2.2.0",
"description": "A simple customizable countdown component for React Native",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json --format stylish",
"ci": "tsc && npm run lint && npm run prettier",
"build": "npm run ci && tsc",
"prettier": "prettier --write '**/*.{ts,tsx,js}' --config .prettierrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avid21/react-native-timer-countdown.git"
},
"keywords": [
"countdown",
"react-native",
"timer"
],
"author": "Noel Yoo",
"license": "MIT",
"bugs": {
"url": "https://github.com/avid21/react-native-timer-countdown/issues"
},
"homepage": "https://github.com/avid21/react-native-timer-countdown#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^10.12.30",
"@types/react": "^16.8.7",
"@types/react-dom": "16.0.3",
"@types/react-native": "^0.56.24",
"prettier": "1.13.7",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^2.9.2"
}
}