-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 722 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 722 Bytes
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
{
"name": "generator-cljs-fullstack",
"version": "0.1.0-alpha.2",
"description": "Yeoman generator for webapps utilizing ClojureScript on the front-end and back-end.",
"license": "BSD",
"main": "app/index.js",
"repository": "johntrimble/generator-cljs-fullstack",
"author": {
"name": "John Trimble",
"email": "trimblej@gmail.com",
"url": "http://johntrimble.com"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"clojure",
"ClojureScript"
],
"dependencies": {
"yeoman-generator": "~0.16.0",
"chalk": "~0.4.0"
},
"devDependencies": {
"mocha": "*"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}