-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "calendar",
"version": "1.0.0",
"description": "smart calendar, with events suggestions",
"main": "index.js",
"scripts": {
"app": "node index.js",
"test": "node_modules/.bin/jasmine-node spec --color --verbose --autotest --watch .",
"coverage": "./node_modules/.bin/istanbul cover -x **/spec/** -x **index.js** -x **debug.js** jasmine-node spec",
"doc": "node_modules/.bin/jsdoc modules/"
},
"keywords": [
"calendar",
"jasmine",
"module"
],
"author": "James Wolfe",
"license": "ISC",
"dependencies": {
"bcrypt": "^1.0.1",
"csprng": "^0.1.1",
"istanbul": "^0.4.5",
"mongoose": "^4.7.2",
"nodemon": "^1.11.0",
"readline-sync": "^1.2.22",
"request": "^2.78.0",
"restify": "^4.3.0",
"sync-request": "^3.0.1"
},
"devDependencies": {
"bcrypt": "^1.0.0",
"eslint": "^3.1.0",
"frisby": "^0.8.5",
"istanbul": "^0.4.5",
"jasmine-node": "^1.14.5",
"jsdoc": "^3.4.0",
"mongoose": "^4.7.1",
"node-inspector": "^0.12.8",
"nodemon": "^1.11.0",
"restify": "^4.3.0"
}
}