-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "react-native-safe-modules",
"version": "1.0.0",
"description": "A safe way to consume React Native NativeModules (forked from react-native-safe-module by @lelandrichardson)",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run --silent build",
"build": "rm -rf lib && babel -d lib src",
"lint": "eslint ./src ./test",
"test": "npm run --silent lint && npm run --silent test:all",
"test:all": "npm run --silent test:base -- --recursive test/",
"test:watch": "npm run --silent test:base -- --recursive test/ --watch",
"test:base": "mocha --require ./test/_setup.js --require react-native-mock/mock.js --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilioicai/react-native-safe-modules.git"
},
"keywords": [
"react-native",
"react",
"native-modules",
"code-push"
],
"author": "Emilio Rodriguez <emiliorodriguez@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilioicai/react-native-safe-modules/issues"
},
"homepage": "https://github.com/emilioicai/react-native-safe-modules#readme",
"peerDependencies": {
"react-native": "*"
},
"dependencies": {
"dedent": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-preset-react-native": "^1.9.0",
"chai": "^3.5.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^11.0.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"mocha": "^3.0.2",
"react": "^15.2.0",
"react-native": "^0.30.0",
"react-native-mock": "^0.2.6",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}