forked from FormidableLabs/whackage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "whackage",
"version": "1.1.0",
"description": "Multi-repo development tool for React Native",
"keywords": [
"react-native",
"packager",
"providesModule",
"symlink",
"npm link"
],
"engines": {
"node": ">= 4",
"npm": ">= 3"
},
"main": "index.js",
"scripts": {
"test": "eslint index.js src"
},
"bin": {
"whack": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/whackage.git"
},
"bugs": {
"url": "https://github.com/FormidableLabs/whackage/issues"
},
"homepage": "https://github.com/FormidableLabs/whackage#readme",
"author": "Jani Eväkallio <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"command-exists": "^1.0.2",
"fs-extra": "^1.0.0",
"is-symlink": "^0.1.1",
"rsyncwrapper": "^2.0.1",
"yargs": "^6.4.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^2.13.1",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.2.0"
}
}