-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "generator-irrigate",
"version": "0.1.0",
"description": "Create new react native files that fit the IR workflow",
"files": [
"app",
"screen",
"component"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dos2unix": "find . -type f -exec dos2unix {} \\;",
"compile": "babel -d ./ src/",
"prepublish": "npm run compile"
},
"author": "Gant Laborde <gant@infinite.red> (http://github.com/gantman)",
"preferGlobal": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git:://github.com/GantMan/irrigate.git"
},
"bin": {
"irrigate": "index.js"
},
"keywords": [
"react-native",
"yeoman-generator",
"infinite red"
],
"dependencies": {
"colors": "^1.1.2",
"ramda": "^0.20.0",
"shelljs": "^0.6.0",
"yeoman-generator": "^0.21.1"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18"
}
}