-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.05 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
{
"name": "fsgdb",
"description": "A file system graph database",
"version": "0.3.0",
"license": "mit",
"keywords": [
"cms",
"database",
"graph",
"file",
"filesystem",
"markdown",
"yaml",
"image"
],
"maintainers": [
{
"name": "Arthur Silber",
"email": "[email protected]",
"web": "arthursilber.de"
}
],
"main": "main.js",
"repository": [
{
"type": "git",
"url": "[email protected]:AtiX/fsgdb.git"
}
],
"bugs": {
"url": "https://github.com/AtiX/fsgdb/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha --bail --compilers coffee:coffee-script/register --recursive",
"document": "./node_modules/.bin/crojsdoc",
"start": "node ./sampleApp/main.js"
},
"dependencies": {
"chai": "3.4.0",
"coffee-script": "1.10.0",
"exif": "0.4.0",
"gm": "^1.21.1",
"js-yaml": "3.4.6",
"marked": "0.3.5",
"rimraf": "2.4.3",
"underscore": "1.8.3"
},
"devDependencies": {
"mocha": "~2.3.3",
"crojsdoc": "^0.8.15"
}
}