-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·29 lines (29 loc) · 1.04 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
{
"name" : "potter-evolve",
"description" : "node-potter extension to do evolutionary design",
"version" : "0.0.0",
"repository" : { "type": "git", "url": "git://github.com/daizoru/node-potter-evolve.git" },
"license" : "BSD",
"author" : { "name" : "Julian Bilcke", "email" : "[email protected]", "url" : "http://github.com/daizoru" },
"engines" : { "node": "0.6.x || 0.7.x" },
"bin" : "./bin/potter-evolve",
"main" : "./lib/potter-evolve",
"directories" : { "lib" : "./lib", "examples" : "./examples", "test" : "./test" },
"scripts" : {
"build" : "coffee --compile --output lib/ src/",
"watch" : "coffee --watch --compile --output lib/ src/",
"test" : "mocha",
"html" : "mocha --reporter doc"
},
"dependencies": {
"pkginfo" : "0.2.x",
"deck" : "0.0.4",
"ragtime" : "*",
"potter" : "*",
"evolve" : "*"
},
"devDependencies": {
"should" : "0.6.x",
"coffee-script" : "1.3.x"
}
}