-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.08 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
{
"name": "create-react-once-app",
"version": "0.0.1",
"description": "React Native template for a quick start with React Once.",
"main": "cli.js",
"scripts": {
"start": "node cli.js",
"test": "jest",
"test-watch": "jest --watch",
"precommit": "npm run test"
},
"engines": {
"node": ">=8"
},
"bin": {
"create-react-once-app": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/NoahGray/create-react-once-app.git"
},
"keywords": [
"react",
"native",
"react-native",
"react-native-web",
"react-native-macos",
"catalyst",
"template",
"boilerplate"
],
"author": "Noah Gray",
"license": "MIT",
"devDependencies": {
"jest": "^23.1.0"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^2.15.1"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"./node_modules/"
]
},
"bugs": {
"url": "https://gitlab.com/NoahGray/react-once-template/-/issues"
},
"homepage": "https://gitlab.com/NoahGray/create-react-once-app#readme"
}