-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1017 Bytes
/
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
{
"name": "create-reactron-app",
"version": "0.0.5",
"description": "Simple Electron with React Project Generator",
"main": "index.js",
"author": "Mitch Pierias <github.com/MitchPierias>",
"license": "ISC",
"scripts": {
"start": "node index",
"build": "tsc",
"publish": "npm publish ./build --access public",
"test": "tsc && mocha"
},
"repository": {
"type": "git",
"url": "github.com/MitchPierias/Reactron"
},
"preferGlobal": true,
"bin": {
"create-reactron-app": "./index.js"
},
"dependencies": {
"@octokit/rest": "^16.2.0",
"arg": "^3.0.0",
"colors": "^1.3.3",
"fs": "0.0.1-security",
"got": "^9.4.0",
"make-dir": "^1.3.0",
"ora": "^3.2.0",
"path": "^0.12.7",
"tar": "^4.4.8",
"util": "^0.11.1"
},
"peerDependencies": {
"typescript": "^3.3.3333"
},
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/node": "^11.11.3",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.3"
}
}