-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "evolve",
"description": "library for evolving source code",
"version": "0.0.5",
"author": {
"name": "Julian Bilcke",
"email": "[email protected]",
"url": "http://daizoru.github.com/node-evolve"
},
"repository": {
"type": "git",
"url": "https://github.com/daizoru/node-evolve.git"
},
"keywords": [
"evolve",
"genetic",
"evolutionary",
"evolutionary design",
"genetic programming",
"genetic algorithm"
],
"scripts": {
"test": "node_modules/mocha/bin/mocha --bail --require chai --compilers coffee:coffee-script test/*.coffee",
"build": "node_modules/coffee-script/bin/coffee --compile --output lib/ src/",
"watch": "node_modules/coffee-script/bin/coffee --watch --compile --output lib/ src/"
},
"bin": "./bin/evolve",
"main": "./lib/evolve",
"licence": "./LICENSE.txt",
"dependencies": {
"coffee-script": "1.6.x",
"ragtime": "0.0.7",
"deck": "0.0.4",
"uglify-js": "1.3.4",
"node-v8-clone": "0.4.2"
},
"devDependencies": {
"coffee-script": "1.6.x",
"mocha": "1.7.x",
"chai": "1.3.x"
}
}