-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 787 Bytes
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
{
"name": "object-remap",
"version": "0.0.6",
"description": "Remap object fields to a new structure.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir ./dist",
"test": "nodemon src/test.js",
"deploy": "npm run build && npm version patch && npm publish"
},
"keywords": [
"remap",
"object"
],
"author": "Nir Adler <niradler55@email.com> (https://niradler.com)",
"license": "MIT",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/niradler/object-remap.git"
},
"bugs": {
"url": "https://github.com/niradler/object-remap/issues"
},
"homepage": "https://github.com/niradler/object-remap#readme"
}