-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 1.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "gnd",
"version": "0.8.18",
"engines": {
"node": ">=0.6.10"
},
"description": "Ground Web Development Framework",
"author": "Manuel Astudillo <[email protected]>",
"contributors": [
{
"name": "Aron Kornhall",
"email": "[email protected]"
}
],
"main": "./index.js",
"bin": {
"gnd": "./bin/gnd.js"
},
"files": [
"index.js",
"gnd.ts",
"gnd-server.ts",
"build",
"bin",
"lib",
"third",
"docs"
],
"homepage": "http://gnd.io",
"license": "MIT",
"keywords": [
"MVC",
"MVVC",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/OptimalBits/ground.git"
},
"bugs": {
"url": "https://github.com/OptimalBits/ground/issues",
"email": "[email protected]"
},
"dependencies": {
"commander": "*",
"grunt-ts": "^6.0.0-beta.17",
"lodash": "^4.11.2",
"mkdirp": "^0.5.0",
"redis": "^2.4.2",
"socket.io": "^1.1.0"
},
"devDependencies": {
"@types/node": "^9.4.0",
"bluebird": "^3.5.1",
"body-parser": "^1.15.0",
"cabinet": "^0.3.9",
"connect": "*",
"cookie": "*",
"cookie-parser": "^1.4.1",
"cookies": "*",
"expect.js": "*",
"express": "^4.13.4",
"grunt": "~0.4.2",
"grunt-contrib-compress": "~0.5.0",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-yuidoc": "~0.4.0",
"grunt-typescript": "^0.8.0",
"mocha": "^2.4.5",
"mongoose": "^4.4.12",
"node-uuid": "*",
"passport": "*",
"passport-local": "*",
"posix": "^4.0.1",
"promises-aplus-tests": "*",
"requirejs": "~2.1.8",
"should": "~0.5.1",
"socket.io": "^1.1.0",
"time-grunt": "~0.1.1",
"typescript": "^2.7.1"
},
"scripts": {
"test": "mocha tests/*",
"prepublish": "grunt"
}
}