-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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": "dragon-hoard",
"private": false,
"version": "0.0.0",
"description": "a open source nodejs e-commerce platform",
"dependencies": {
"nodemon": "^1.0.15",
"connect": "^2.13.0",
"pageres": "^0.2.3",
"mongoose": "^3.8.8",
"socket.io": "^0.9.16"
},
"main": "index.js",
"scripts": {
"test": "make test",
"start": "./node_modules/.bin/nodemon index.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --reporter=mocha-istanbul test/**/*.js",
"coveralls": "npm run-script coverage && ./node_modules/.bin/coveralls.js < coverage/lcov.info"
},
"os": [
"!win32"
],
"repository": {
"type": "git",
"url": "https://github.com/dragonhoard/dragonhoard.git"
},
"homepage": "http://dragonhoard.github.io/",
"author": "Michael Christenson II <michael@rebelhold.com> (http://rebelhold.com/)",
"contributors": [
"Michael Christenson II <michael@rebelhold.com> {http://rebelhold.com/)",
"David Fuka"
],
"license": "GPL-3.0+",
"devDependencies": {
"mocha-istanbul": "^0.2.0",
"mocha-lcov-reporter": "0.0.1",
"chai": "^1.9.0",
"mocha": "^1.17.1",
"coveralls": "^2.8.0",
"istanbul": "^0.2.4"
}
}