-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "transformobject",
"version": "0.3.1",
"description": "Transform your objects to desired rich ones using declarative rules.",
"main": "lib/transform.js",
"scripts": {
"build": "node_modules/babel-cli/bin/babel.js ./src/ -d lib/ --ignore '**/*.test.js'",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/sinabakh/js-object-transform"
},
"keywords": [
"transform",
"transformation",
"serializer",
"serialization",
"response",
"response build",
"nodejs",
"js"
],
"author": "Sina Bakhtiari <sinabakh44@gmail.com>",
"contributors": [
{
"name": "Jae Task",
"email": "me@jaetask.com",
"url": "http://www.jaetask.com"
}
],
"license": "Beerware",
"bugs": {
"url": "https://github.com/sinabakh/js-object-transform/issues"
},
"homepage": "https://github.com/sinabakh/js-object-transform",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-cli": "^6.26.0",
"babel-jest": "^26.0.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.6.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^26.0.1",
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1",
"prettier": "^2.0.5",
"ucwords": "^1.0.5"
},
"dependencies": {}
}