-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 2.52 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
{
"name": "map-factory",
"version": "3.8.7",
"description": "A simple object mapping utility that makes it easy to map data from one object to another. Create object mappers using fluent interface that supports deep references (dot notation), custom transformations, and object merging.",
"main": "./dist/lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "./node_modules/.bin/babel ./src -d dist",
"postbuild": "cp ./src/lib/*.d.ts ./dist/lib/",
"clean": "./node_modules/.bin/rimraf dist/*",
"precover": "npm run build",
"cover": "istanbul cover lab ./dist/test --leaks",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"pretest": "npm run build",
"test": "lab ./dist/test/ -v -S",
"lint": "./node_modules/.bin/eslint ./src --fix",
"preone": "npm run build",
"one": "./test-one",
"travis": "npm run test",
"premajor": "npm run test",
"major": "npm version major -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"preminor": "npm run test",
"minor": "npm version minor -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prepatch": "npm run test",
"patch": "npm version patch -m \"published to npm as v%s\" && git push --follow-tags && npm publish",
"prebenchmark": "npm run build",
"benchmark": "node ./dist/benchmark/mapper-vs-custom.js",
"safe": "./safe-install map-factory"
},
"bugs": {
"url": "https://github.com/midknight41/map-factory/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/midknight41/map-factory.git"
},
"keywords": [
"object",
"mapping",
"mapper",
"dot-notation",
"recursive",
"keys",
"fluent",
"transform"
],
"author": "Chad Macey <[email protected]>",
"contributors": [
"Chad Macey <[email protected]>",
"Simranjeet Singh <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@hapi/code": "^8.0.3",
"@hapi/lab": "^24.1.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"benchmark": "^2.1.4",
"coveralls": "^3.1.0",
"eslint": "^7.24.0",
"istanbul": "^0.4.5",
"lab-suite": "^1.4.0",
"lab-testing": "^4.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"types": "./dist/lib/map-factory.d.ts",
"typings": "./dist/lib/map-factory.d.ts",
"files": [
"dist"
],
"dependencies": {
"lodash": "^4.17.21"
}
}