-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.06 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
86
87
88
89
90
{
"name": "tastypie",
"version": "6.0.0",
"description": "Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces",
"main": "index.js",
"scripts": {
"test": "node test.js",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec --recursive test/*.spec.js && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage",
"postcoverage": "rm -rf coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/node-tastypie/tastypie"
},
"keywords": [
"tastypie",
"REST",
"rest",
"class",
"oop",
"api",
"django",
"hapi",
"resource"
],
"author": {
"name": "Eric Satterwhite",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"dependencies": {
"accepts": "^1.1.0",
"async": "^2.0.1",
"boom": "^4.0.0",
"catbox": "^7.1.1",
"catbox-memory": "^2.0.3",
"catbox-noop": "0.0.1",
"co": "^4.6.0",
"debug": "^2.0.0",
"joi": "^10.3.1",
"jstoxml": "~0.2.2",
"mime": "^1.2.11",
"mkdirp": "^0.5.1",
"mout": "^1.0.0",
"prime": "^0.5.0",
"qs": "^6.2.0",
"url-join": "^1.1.0",
"xml2js": "~0.4.2"
},
"engines": {
"node": ">=6.0.0"
},
"bundledDependencies": [
"accepts",
"boom",
"catbox-memory",
"debug",
"jstoxml",
"mime",
"mout",
"prime",
"prime-util",
"url-join",
"xml2js"
],
"peerDependencies": {
"hapi": ">=8.0.0",
"joi": ">=6.0.0"
},
"devDependencies": {
"bench-rest": "^1.0.2",
"codacy-coverage": "^1.1.3",
"forms": "^1.1.1",
"hapi": "^13.0.0",
"inert": "^4.0.0",
"ink-docstrap": "^1.1.4",
"istanbul": "^0.4.4",
"jscs": "^3.0.4",
"jscs-jsdoc": "^2.0.0",
"jsdoc": "^3.3.0-beta3",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"node-status": "^0.1.4",
"should": "^9.0.2",
"sinon": "^1.17.4",
"tv": "^5.0.2",
"vision": "^4.1.0"
}
}