forked from jaysoo/react-native-menu
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "react-native-menu",
"version": "0.19.0",
"description": "A flexible dropdown menu component for Android and iOS that is similar to Android's Spinner.",
"repository": {
"type": "git",
"url": "https://github.com/jaysoo/react-native-menu"
},
"scripts": {
"install:example": "cd Example && npm install",
"build:android": "cd Example/android && ./gradlew assembleRelease",
"start:appium": "./node_modules/.bin/appium",
"test:setup": "npm run install:example && npm run build:android",
"test:unit": "./node_modules/.bin/mocha --require babel-core/register test/unit",
"test:feature": "./node_modules/.bin/concurrently 'npm run start:appium' 'npm run test:feature:suite'",
"test:feature:suite": "./node_modules/.bin/mocha --require babel-core/register test/integration",
"test": "npm run test:setup && npm run test:unit && npm run test:integration"
},
"main": "src/index.js",
"files": [
"android.demo.gif",
"ios.demo.gif",
"README.md",
"LICENSE",
"src"
],
"keywords": [
"react-native",
"react",
"menu",
"spinner",
"dropdown",
"react-component",
"ios",
"android"
],
"author": "Jack Hsu <[email protected]> (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-stage-2": "^6.3.13",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"colors": "^1.1.2",
"concurrently": "^2.0.0",
"mocha": "^2.3.4",
"react": "^15.0.2",
"react-addons-test-utils": "^0.14.6",
"sinon": "^1.17.2",
"wd": "^0.4.0"
},
"dependencies": {
"react-timer-mixin": "^0.13.3"
}
}