-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
46 lines (43 loc) · 952 Bytes
/
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
{
"name": "pixicam",
"version": "0.0.1",
"description": "2d matrix based camera system",
"author": "Georgios Kaleadis",
"contributors": [],
"main": "./src/index.js",
"homepage": "http://www.kaleadis.de",
"bugs": "https://github.com/georgiee/pixicam/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/georgiee/pixicam.git"
},
"aliasify": {
"aliases": {
"underscore": "lodash"
}
},
"scripts": {},
"dependencies": {
"async": "^0.9.0",
"brfs": "^1.4.0",
"lodash": "^3.1.0"
},
"devDependencies": {
"aliasify": "^1.7.2",
"browserify": "^9.0.8",
"gulp": "^3.8.11",
"gulp-util": "^3.0.4",
"jshint-summary": "^0.4.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.1.2"
},
"browserify": {
"transform": [
"brfs"
]
}
}