-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathpackage.json
52 lines (45 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
{ "name" : "sylvester"
, "description" : "Vector and Matrix math for JavaScript"
, "homepage" : "http://sylvster.jcoglan.com"
, "author" : "James Coglan <[email protected]> (http://jcoglan.com/)"
, "keywords" : ["vector", "matrix", "geometry", "math"]
, "version" : "0.2.0"
, "engines" : {"node": ">=0.4.0"}
, "main" : "./lib/sylvester"
, "devDependencies" : {"jstest": "", "wake": ""}
, "scripts" : { "build" : "wake"
, "test" : "node test/console.js"
}
, "bugs" : "http://github.com/jcoglan/sylvester/issues"
, "licenses" : [ { "type" : "MIT"
, "url" : "http://www.opensource.org/licenses/mit-license.php"
}
]
, "repository" : { "type" : "git"
, "url" : "git://github.com/jcoglan/sylvester.git"
}
, "wake": {
"javascript": {
"sourceDirectory": "src",
"targetDirectory": "lib",
"builds": {
"src": {"digest": false, "minify": false},
"min": {"digest": false, "minify": true, "sourceMap": "src", "tag": "suffix"}
},
"targets": {
"sylvester": [
"sylvester",
"vector",
"matrix",
"line",
"line.segment",
"plane",
"polygon",
"polygon.vertex",
"linkedlist",
"exports"
]
}
}
}
}