-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
76 lines (76 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "animatron-player",
"version": "1.4.0",
"description": "JavaScript Player engine for Animatron",
"keywords": [
"html5",
"canvas",
"animation"
],
"homepage": "http://animatron.com/player/",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Animatron/player.git"
},
"contributors": [
{
"name": "Anton Kotenko",
"email": "[email protected]",
"url": "http://shamansir.github.io"
},
{
"name": "Alexey Pegov",
"email": "[email protected]",
"url": "http://www.alexeypegov.com/"
},
{
"name": "Dmitry Skavish",
"email": "[email protected]"
},
{
"name": "Yuriy Opryshko",
"email": "[email protected]",
"url": "http://localhost"
},
{
"name": "Nikita Dudnik",
"email": "[email protected]",
"url": "http://nikdudnik.com"
}
],
"directories": {
"lib": "src/vendor",
"doc": "doc",
"examples": "examples"
},
"dependencies": {
"jake": "latest",
"async": "latest",
"aws-sdk": "latest",
"google-closure-compiler": "latest",
"browserify": "latest",
"browserify-css": "latest",
"jasmine": "latest"
},
"optionalDependencies": {
"docco": "latest",
"walk": "latest",
"orderly": "latest",
"jsonschema": "latest",
"markdown": "latest"
},
"scripts": {
"test": "./node_modules/bin/karma start ./spec/karma.conf.js --single-run"
},
"browser": {
"engine": "./src/engine/dom-engine.js"
},
"devDependencies": {
"jasmine-core": "^2.3.4",
"karma": "^0.12.37",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-jasmine": "^0.3.6"
}
}