-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "react-native-infinity",
"version": "0.0.15",
"scripts": {
"lint": "./node_modules/.bin/eslint './cli/'",
"test": "echo \"Error: no test specified\" && exit 1",
"see-npm-package": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz"
},
"bin": {
"react-native-infinity": "./cli/index.js"
},
"author": "codypearce",
"dependencies": {
"automerge": "^0.12.1",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"enquirer": "^2.3.1",
"fs-extra": "^8.1.0",
"js-combinatorics": "^0.5.4",
"merge-package-json": "^0.1.3"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.5",
"prettier": "^1.18.2"
},
"main": "./cli/index.js",
"keywords": [
"react native",
"react starter",
"react templates",
"all-platforms",
"cross-platform"
],
"description": "A React Native Starter For All Platforms",
"homepage": "http://reactnativeinfinity.com/",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/codypearce/react-native-infinity.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codypearce/react-native-infinity/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}