dynamic-api-builder-js 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/dynamic-api-builder-js-1.0.0.tgz +0 -0
- package/index.js +3040 -0
- package/package.json +12 -0
package/package.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dynamic-api-builder-js",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [],
|
|
9
|
+
"author": "Gulshan Marandi",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"description": "Configuration-driven REST API generator for Node.js — define endpoints in JSON, get a fully working Express API instantly."
|
|
12
|
+
}
|