-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "@workablehr/object-transformator",
"description": "Request",
"license": "MIT",
"version": "0.0.3",
"main": "lib/index.js",
"module": "es/index.js",
"keywords": [
"json:api",
"client",
"serialize",
"deserialize"
],
"files": [
"dist",
"lib",
"src",
"es"
],
"sideEffects": false,
"npmName": "@workablehr/object-transformator",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "babel src --out-dir es",
"build:umd": "webpack",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd",
"test": "jest --config ./jest/config.js",
"prepublishOnly": "yarn clean && yarn build",
"publish:beta": "npm publish --tag=next",
"docs": "jsdoc -c doc.conf.json"
},
"dependencies": {
"@babel/runtime": "7.8.3",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/cli": "7.8.3",
"@babel/core": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.3",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"core-js": "3.6.4",
"docdash": "1.1.1",
"jest": "25.1.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Workable/objectTransformator.git"
},
"author": "ioannis.klironomos@gmail.com",
"bugs": {
"url": "https://github.com/Workable/objectTransformator/issues"
},
"homepage": "https://github.com/Workable/objectTransformator#readme"
}