-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "react-native-prompt",
"version": "1.0.0",
"description": "A cross-platform prompt component for React Native.",
"repository": {
"type": "git",
"url": "https://github.com/jaysoo/react-native-prompt"
},
"scripts": {
"install:example": "cd PromptExample && npm install",
"build:android": "cd PromptExample/android && ./gradlew assembleRelease",
"start:appium": "./node_modules/.bin/appium",
"test:setup": "npm run install:example && npm run build:android",
"test:feature": "./node_modules/.bin/mocha --require babel-core/register test/feature",
"test": "npm run test:setup && npm run test:feature"
},
"main": "src/index.js",
"files": [
"android.demo.gif",
"ios.demo.gif",
"README.md",
"LICENSE",
"src"
],
"keywords": [
"react-native",
"react",
"prompt",
"spinner",
"dropdown",
"react-component",
"ios",
"android"
],
"author": "Jack Hsu <jack.hsu@gmail.com> (http://jaysoo.ca/)",
"license": "ISC",
"devDependencies": {
"appium": "^1.4.16",
"babel-core": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-native": "^1.9.0",
"babel-preset-stage-2": "^6.3.13",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"colors": "^1.1.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"wd": "^0.4.0"
}
}