-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1005 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
47
{
"name": "refuge",
"main": "./index",
"author": "Jamil Bou Kheir <[email protected]>",
"description": "Open-source web-based password manager",
"version": "0.0.1",
"scripts": {
"start": "node index.js",
"test": "make cov"
},
"bin": {
"refuge": "./bin/refuge"
},
"repository": {
"type": "git",
"url": "https://github.com/elbii/refuge.git"
},
"dependencies": {
"validator": "*",
"express": "~3.4.8",
"hiredis": "*",
"connect-redis": "1.4.7",
"connect": "~2.8.2",
"mongoose": "*"
},
"devDependencies": {
"grunt-bowercopy": "*",
"grunt": "*",
"istanbul": "*",
"supertest": "*",
"nodemon": "*",
"mocha": "*",
"karma": "~0.10",
"karma-mocha": "*",
"karma-coverage": "*",
"karma-sinon-chai": "*",
"karma-osx-reporter": "*",
"sinon": "*",
"chai": "*",
"chance": "*",
"recursive-readdir": "0.0.2",
"fsevents": "^0.2.0"
},
"optionalDependencies": {
"glob": "~3.2.3"
}
}