-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "mocha-react-native",
"version": "0.6.0",
"description": "mocha-react-native",
"main": "lib/main.js",
"scripts": {
"build": "babel src --ignore \"_*\" --out-dir lib",
"prepublish": "npm run build",
"lint": "eslint . --max-warnings 0",
"typecheck": "flow",
"test-src": "mocha \"src/**/__tests__/*.js\"",
"test": "npm run lint && npm run typecheck && npm run test-src"
},
"dependencies": {
"babel-core": "^6.18.0",
"babel-preset-react-native-mocha": "^1.9.0",
"react-native-mock": "0.2.7"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015-native-generators": "^6.6.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.8.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.25.0",
"expect": "^1.20.2",
"flow-bin": "^0.33.0",
"mocha": "^3.1.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"keywords": [
"mocha",
"react-native"
],
"author": "devteam@kodefox.com",
"license": "ISC"
}