forked from benzyaa/react-native-timer
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 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
{
"name": "react-native-timer-native",
"version": "2.0.1",
"description": "A better way to manage timers on react native (taking into account difference between device an debugger time on remote js debug mode)",
"main": "lib/index.js",
"scripts": {
"test": "babel-node test/main.js",
"build": "npm run clean && babel src/ --out-dir lib/",
"watch": "npm run clean && babel -w src/ --out-dir lib/",
"clean": "rm -rf lib/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Odinvt/react-native-timer-native.git"
},
"author": "Kapil <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Odinvt/react-native-timer-native/issues"
},
"homepage": "https://github.com/Odinvt/react-native-timer-native#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3"
}
}