forked from meltingice/CamanJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.65 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
{
"name": "caman",
"version": "4.1.2",
"description": "Javascript (Ca)nvas (Man)ipulation for NodeJS and the browser",
"keywords": [
"canvas",
"image",
"manipulate",
"filter",
"image manipulation",
"editing"
],
"homepage": "http://camanjs.com",
"author": {
"name": "Ryan LeFevre",
"email": "[email protected]",
"url": "http://meltingice.net"
},
"engines": {
"node": ">= 0.6.18"
},
"contributors": [
{
"name": "Rick Waldron",
"url": "http://github.com/rwldrn"
},
{
"name": "Cezar Sa Espinola",
"url": "http://github.com/cezarsa"
},
{
"name": "Jarques Pretorius",
"url": "http://twitter.com/jarques"
},
{
"name": "Hosselaer",
"url": "https://github.com/Hosselaer"
},
{
"name": "Mario Klingemann",
"url": "http://www.quasimondo.com"
}
],
"main": "./dist/caman.full.js",
"repository": {
"type": "git",
"url": "http://github.com/meltingice/CamanJS.git"
},
"dependencies": {
"canvas": "*",
"fibers": "*"
},
"devDependencies": {
"coffee-script": ">= 1.6.1",
"docco": "0.6.2",
"codo": "*",
"jsmin": "*",
"packer": "*",
"chai": "*",
"servedir": "*",
"cli": "*",
"cli-table": "*",
"karma": "~ 0.10",
"karma-mocha": "*"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script --reporter spec --globals Caman ./test/unit/*.coffee && ./node_modules/.bin/karma start --single-run --browsers Firefox",
"examples": "./node_modules/servedir/bin/servedir",
"docs": "codo",
"docs-server": "codo --server"
}
}