-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.61 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.61 KB
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
69
70
71
72
73
{
"name": "TM_4_0_GraphDB",
"version": "0.0.1",
"description": "Code for the Graph DB used by TM 4.0",
"main": "app.js",
"scripts": {
"start": "npm run start-nodemon",
"test": "node ./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --recursive -R list",
"test-js": "node ./node_modules/mocha/bin/mocha --recursive -R list ./.dist/test",
"clear-cache": "touch .tmCache/.deleteCacheNext",
"watch": "mocha -w --compilers coffee:coffee-script/register --watch-extensions jade --recursive -R list",
"watch-js": "node ./node_modules/mocha/bin/mocha --recursive -R list -w ./.dist/test",
"dev": "node ./node_modules/supervisor/lib/cli-wrapper.js -e 'coffee,js' app.js",
"start-nodemon": "node ./node_modules/.bin/nodemon --watch src -e coffee app.js",
"compile": "coffee --output ./.dist/src --compile ./src && coffee --output ./.dist/test --compile ./test",
"coverage": "./bin/local-code-coverage.sh",
"installWinSvc": "node ./node_modules/winser/bin/winser -i",
"uninstallWinSvc": "node ./node_modules/winser/bin/winser -r",
"coverage-publish": "./bin/publish-code-coverage.sh",
"coverage-local": "node_modules/.bin/onchange 'src/**/*.coffee' 'test/**/*.coffee' -- ./bin/lcov-code-coverage.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/TeamMentor/TM_4_0_GraphDB.git"
},
"keywords": [
"TeamMentor",
"Graph",
"LevelGraph"
],
"author": "Dinis Cruz <[email protected]> (http://blog.diniscruz.com/)",
"license": "TeamMentor License",
"bugs": {
"url": "https://github.com/TeamMentor/TM_4_0_GraphDB/issues"
},
"homepage": "https://github.com/TeamMentor/TM_4_0_GraphDB",
"dependencies": {
"async": "latest",
"body-parser": "latest",
"cheerio": "latest",
"coffee-script": "latest",
"compression": "latest",
"express": "latest",
"fluentnode": "latest",
"github": "latest",
"jade": "latest",
"jscreole": "latest",
"jsdom": "9.9.1",
"level": "^1.1.0",
"levelgraph": "latest",
"markdown-it": "latest",
"request": "latest",
"swagger-client": "git+https://github.com/TeamMentor/swagger-js.git",
"swagger-node-express": "latest",
"teammentor": "latest",
"uuid": "^3.0.1",
"vis": "latest",
"winser": "latest",
"winston": "^2.3.0",
"winston-daily-rotate-file": "^1.4.2",
"xml2js": "latest"
},
"devDependencies": {
"chai": "latest",
"coveralls": "latest",
"html-file-cov": "latest",
"mocha": "latest",
"mocha-lcov-reporter": "latest",
"nodemon": "^1.3.7",
"supertest": "latest",
"supervisor": "latest"
}
}