-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
75 lines (75 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-native-create-bridge",
"version": "2.0.1",
"description": "A CLI generator that creates React Native bridges with ease!",
"main": "index.js",
"scripts": {
"test": "jest",
"test:update": "npm test -- -u",
"build": "babel src --out-dir build",
"build:watch": "babel -w src --out-dir build",
"start": "node build/index.js",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"package:dev": "npm unlink react-native-create-bridge && rm -rf node_modules && yarn && npm run build && npm link"
},
"lint-staged": {
"src/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peggyrayzis/react-native-create-bridge.git"
},
"keywords": [
"react",
"native"
],
"author": "Peggy Rayzis & Kurt Kemple",
"license": "ISC",
"bugs": {
"url": "https://github.com/peggyrayzis/react-native-create-bridge/issues"
},
"homepage": "https://github.com/peggyrayzis/react-native-create-bridge#readme",
"dependencies": {
"babel-runtime": "^6.20.0",
"compare-versions": "^3.0.1",
"inquirer": "^2.0.0",
"is-valid-path": "^0.1.1",
"log-symbols": "^1.0.2",
"mkdirp-promise": "^5.0.0",
"mz": "^2.6.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-jest": "^18.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.8",
"husky": "^0.14.1",
"jest": "^20.0.4",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
],
"plugins": [
"transform-runtime"
]
},
"rnpm": {
"plugin": "./build/index.js"
}
}