-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
44 lines (44 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
{
"name" : "seen",
"description" : "seen.js is a library for drawing simple 3D scenes in SVG and HTML5 Canvas elements.",
"version" : "0.2.7",
"author" : "Bill Dwyer",
"license" : "Apache-2.0",
"url" : "http://seenjs.io",
"repository" : {
"type" : "git",
"url" : "https://github.com/themadcreator/seen"
},
"main" : "dist/latest/seen.js",
"keywords" : [
"3d",
"svg",
"canvas"
],
"scripts": {
"build" : "cake build",
"site" : "nodemon --ext coffee,html,md,css --watch src --watch site --exec ./run-site.sh .",
"publish-site" : "./publish-site.sh",
"test-render" : "phantomjs ./test/phantom/render-scenes.coffee",
"test" : "cake build && mocha ./test/mocha/*.coffee",
"build-bvh-parser" : "pegjs --export-var 'seen.BvhParser' src/ext/bvh.pegjs src/ext/bvh-parser.js"
},
"devDependencies": {
"chai" : ">=1.9.1",
"coffee-script" : ">=1.9.x",
"docco" : ">=0.7.0",
"express" : ">=3.5.0",
"highlight.js" : ">=8.0.0",
"lodash" : ">=2.4.1",
"marked" : ">=0.3.2",
"mocha" : ">=1.18.2",
"nodemon" : ">=1.0.17",
"path" : ">=0.4.9",
"phantomjs" : ">=1.9.7-1",
"pngjs" : ">=0.4.0",
"q" : ">=1.0.1",
"semantic-release" : ">=4.3.5",
"swig" : ">=1.3.2",
"uglify-js" : ">=2.4.13"
}
}