-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.02 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.02 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "grasshopper-api",
"description": "HTTP wrapper for grasshopper-core. Grasshopper is a Data Management System (DMS) that makes working with application data easier for both administrators and developers.",
"main": "./lib/grasshopper-api",
"author": {
"name": "Travis McHattie"
},
"contributors": [
{
"name": "Travis McHattie"
},
{
"name": "Peter Ajtai"
},
{
"name": "Greg Larrenaga"
}
],
"version": "0.24.5",
"repository": {
"type": "git",
"url": "https://github.com/Solid-Interactive/grasshopper-api-js.git"
},
"bugs": {
"url": "https://github.com/Solid-Interactive/grasshopper-api-js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Solid-Interactive/grasshopper-api-js/blob/master/LICENSE"
}
],
"engines": {
"node": ">=0.10.17",
"npm": ">=1.3.9"
},
"dependencies": {
"async": "~0.9.0",
"bluebird": "^3.3.5",
"body-parser": "1.10.0",
"bridgetown-api": "1.0.3",
"connect-mongo": "^1.1.0",
"cookie-parser": "^1.4.1",
"express": "~4.8.0",
"express-session": "^1.13.0",
"grant": "^3.5.5",
"grasshopper-core": "^0.24.5",
"lodash": "^2.4.1",
"method-override": "~1.0.1",
"morgan": "~1.1.0",
"multiparty": "~3.3.1",
"purest": "^2.0.0",
"q": "~1.0.1",
"resolve": "~0.6.1",
"semver": "^5.1.0"
},
"devDependencies": {
"chai": "~1.7.2",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.3",
"grunt-nodemon": "~0.1.1",
"grunt-release-notes": "~0.1.1",
"grunt-shell": "~0.4.0",
"matchdep": "~0.1.2",
"mocha": "~1.12.1",
"mongodb": "^2.2.34",
"nodelint": "~0.6.2",
"sinon": "~1.7.3",
"supertest": "~0.7.1",
"uglify-js": "1.2.x"
},
"jam": {
"main": "lib/grasshopper-api.js",
"include": [
"lib/grasshopper-api.js",
"README.md",
"LICENSE"
]
},
"scripts": {
"test": "grunt test",
"start": "node ./bin/grasshopper-api"
}
}