This repository was archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"name": "react-native-slide-verify",
"version": "0.0.2",
"description": "A pure JavaScript <SlideVerify> component for react-native",
"main": "lib/SlideVerify/index.js",
"files": [
"lib/",
"src/"
],
"homepage": "https://github.com/Jancat/react-native-slide-verify",
"repository": {
"url": "https://github.com/Jancat/react-native-slide-verify.git",
"type": "git"
},
"bugs": "https://github.com/Jancat/react-native-slide-verify/issues",
"author": "Jancat <510675621@qq.com> (https://github.com/Jancat)",
"license": "MIT",
"private": false,
"keywords": [
"react-native",
"slide verify",
"puzzle",
"ios",
"android"
],
"scripts": {
"clean": "rimraf lib",
"start": "node_modules/react-native/packager/packager.sh",
"build": "babel src --out-dir lib && cp -r src/images lib",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"eslint": "^4.15.0",
"eslint-plugin-react": "^7.5.1",
"react": "^16.2.0",
"react-native": "^0.52.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-native-cached-image": "^1.4.3",
"react-native-vector-icons": "^4.5.0"
}
}