forked from jaredhanson/locomotive
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
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
{
"name": "@viadeo-fcms/maglev",
"version": "0.7.1",
"description": "Fast and frictionless MVC web framework for Node.js.",
"keywords": [
"express",
"framework",
"web",
"mvc"
],
"contributors": [
{
"name": "Viadeo Team"
},
{
"name": "Jared Hanson",
"email": "[email protected]",
"url": "http://www.jaredhanson.net/"
}
],
"repository": {
"type": "git",
"url": "git://github.com/viadeo/maglev.git"
},
"bugs": {
"url": "http://github.com/viadeo/maglev/issues"
},
"license": "MIT",
"bin": {
"maglev": "./bin/maglev.js"
},
"main": "./lib",
"dependencies": {
"actionrouter": "0.1.0",
"bootable": "0.2.4",
"bootable-environment": "0.2.0",
"co-prompt": "1.0.0",
"commander": "2.7.1",
"debug": "3.1.0",
"depd": "1.0.1",
"express": "4.13.3",
"mkdirp": "0.3.5",
"parent-require": "1.0.0",
"pkginfo": "0.3.0",
"scripts": "0.1.0",
"syntax-error": "1.1.2",
"utils-flatten": "1.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-connect-middleware": "0.3.1",
"@viadeo-fcms/chai-maglev-helpers": "0.2.1",
"codeclimate-test-reporter": "0.5.0",
"jshint": "2.9.5",
"mocha": "2.3.4",
"nyc": "11.4.1",
"promise": "8.0.1"
},
"engines": {
"node": "8.9.4"
},
"scripts": {
"test": "mocha --check-leaks --require test/bootstrap/node 'test/**/*.test.js'",
"lint": "jshint lib/",
"lint-tests": "jshint test/",
"coverage": "nyc -r lcov -r text mocha --check-leaks --require test/bootstrap/node 'test/**/*.test.js'",
"view-coverage": "open coverage/lcov-report/index.html",
"send-coverage": "cat coverage/lcov.info | ./node_modules/.bin/codeclimate",
"clean": "rm -rf build; rm -rf coverage; rm -rf node_modules"
}
}