-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 877 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": "cyc-cli",
"version": "0.0.39",
"description": "A fully featured Cycle.js starter.",
"preferGlobal": true,
"main": "index.js",
"bin": {
"cyc": "./index.js"
},
"scripts": {
"test": ":",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"keywords": [
"cycle",
"webpack",
"isomorphic",
"boilerplate",
"generator"
],
"author": "synchronous",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://[email protected]/edge/cyc.git"
},
"bugs": {
"url": "https://github.com/edge/cyc/issues"
},
"homepage": "https://github.com/edge/cyc#readme",
"dependencies": {
"clean-copy": "latest",
"colors": "^1.1.2",
"fs-extra": "^0.30.0",
"prompt": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0"
},
"xo": {
"esnext": true
}
}