-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.14 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
77
78
79
80
81
82
{
"name": "gachou-core",
"version": "0.0.0",
"description": "The core of the gachou-service",
"repository": {
"type": "git",
"url": "[email protected]:gachou/gachou-core.git"
},
"homepage": "https://github.com/gachou/gachou-core",
"author": {
"name": "Nils Knappmeier",
"email": "[email protected]",
"url": "https://github.com/nknapp"
},
"bugs": {
"url": "https://github.com/gachou/gachou-core/issues"
},
"main": "src/gachou.js",
"license": "MIT",
"scripts": {
"start": "node dist/start.js",
"preformat": "standard --version || npm -g install standard",
"format": "standard --format",
"pretest": "standard --version || npm -g install standard",
"test": "mocha --recursive && standard",
"thought": "thought run -a",
"prethoughtcheck": "thought --version || npm -g install thought",
"thoughtcheck": "thought check-engines",
"version": "thoughtful changelog -o -a && npm run thought",
"preversion": "npm run thoughtcheck"
},
"dependencies": {
"async": "^2.0.0-rc.3",
"body-parser": "^1.15.0",
"child-process-promise": "^2.0.1",
"deep-aplus": "^1.0.2",
"delayed-stream": "^1.0.0",
"directory-tree-stream": "^1.0.0",
"duplex-maker": "^1.0.0",
"express": "^4.13.4",
"findit": "^2.0.0",
"lodash": "^4.11.1",
"lokijs": "^1.3.16",
"md5": "^2.1.0",
"media-mime-detect": "^0.1.1",
"mmmagic": "^0.4.1",
"moment": "^2.13.0",
"multer": "^1.1.0",
"nedb": "^1.8.0",
"q": "^1.4.1",
"q-io": "^1.13.2",
"sharp": "^0.14.0",
"uuid": "^2.0.2"
},
"devDependencies": {
"async-hook": "~1.2.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"ghooks": "^1.0.3",
"image-testdata": "github:gachou/image-testdata",
"mocha": "^2.3.3",
"thoughtful-release": "^0.3.0",
"trace": "^2.3.0",
"typescript": "^1.8.10"
},
"standard": {
"ignore": [
"test/fixtures/**"
]
},
"files": [
"index.js",
"lib",
"bin"
],
"config": {
"ghooks": {
"pre-commit": "sh -c \"git diff --cached --name-only --diff-filter=ACM -- '*.js' | xargs -r standard\""
}
},
"keywords": []
}