-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 941 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
{
"name": "seismo",
"version": "0.0.12",
"description": "Simple tool to track and analyze application events",
"main": "source/entry.js",
"scripts": {
"test": "node test/runMocha",
"watch": "nodemon --watch source --watch config source/server.js"
},
"keywords": [
"analytics",
"events",
"tracking"
],
"repository": {
"type": "git",
"url": "git://github.com/seismolabs/seismo.git"
},
"bugs": {
"url": "https://github.com/seismolabs/seismo/issues"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"express": "~3.4.0",
"colors": "~0.6.2",
"moment": "~2.2.1",
"mongojs": "~0.9.6",
"underscore": "~1.5.2",
"bcrypt-nodejs": "0.0.3"
},
"devDependencies": {
"request": "~2.27.0",
"mocha": "~1.13.0",
"chai": "~1.6.1",
"sinon-chai": "~2.4.0",
"async": "~0.2.9"
},
"engines": {
"node": "0.10.x"
}
}