-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·68 lines (68 loc) · 1.78 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
{
"name": "hadron",
"description": "Minimalist blogging/publishing platform for Node.js",
"version": "0.3.1",
"homepage": "https://github.com/hadronjs/hadron",
"author": {
"name": "Mario Casciaro"
},
"repository": {
"type": "git",
"url": "git://github.com/hadronjs/hadron"
},
"bugs": {
"url": "https://github.com/hadronjs/hadron/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/hadronjs/hadron/blob/master/LICENSE"
}
],
"dependencies": {
"lodash": "~2.4.1",
"marked": "~0.3.1",
"underscore.string": "~2.3.3",
"object-path": "~0.1.1",
"highlight.js": "~8.0.0",
"mkdirp": "~0.3.5",
"connect-leveldb": "~0.1.4",
"through": "~2.3.4",
"endpoint": "~0.4.2",
"levelup": "~0.18.2",
"leveldown": "~0.10.1",
"level-sublevel": "~5.2.0",
"level-indico": "~0.3.1",
"node-uuid": "~1.4.1",
"minimodel": "~0.2.2",
"delega": "~0.1.0",
"bcrypt": "~0.7.8"
},
"devDependencies": {
"mocha": "~1.17.1",
"chai": "~1.9.0",
"rimraf": "~2.2.2",
"supertest": "~0.9.0",
"spawned": "~0.1.0",
"particles": "~0.3.0",
"particles-express": "~0.3.0",
"particles-bootstrap": "~0.3.0",
"particles-angular": "~0.3.0",
"particles-jquery": "~0.3.0",
"particles-passport": "~0.3.0",
"particles-assetmanager": "~0.1.0"
},
"peerDependencies": {
"particles": "~0.3.0",
"particles-express": "~0.3.0",
"particles-bootstrap": "~0.3.0",
"particles-angular": "~0.3.0",
"particles-jquery": "~0.3.0",
"particles-passport": "~0.3.0",
"particles-assetmanager-angular-extender": "~0.3.0",
"particles-assetmanager": "~0.1.0"
},
"scripts": {
"test": "node_modules/mocha/bin/_mocha test/server/*.js -t 6000 --reporter spec"
}
}