-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "map-transform",
"version": "1.5.3",
"description": "Map and transform objects with mapping definitions",
"author": "Kjell-Morten Bratsberg Thorsen <[email protected]>",
"license": "ISC",
"keywords": [
"map",
"transform",
"javascript",
"object",
"path"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./definitionHelpers.js": {
"import": "./dist/utils/definitionHelpers.js",
"types": "./dist/utils/definitionHelpers.d.ts"
},
"./types.js": {
"types": "./dist/types.d.ts"
}
},
"scripts": {
"test": "npm run build && c8 --reporter=text-summary ava --config ./ava-dist.config.js",
"test:watch": "npm run dev",
"dev": "ava --watch",
"perf": "ava --watch --config ./ava-perf.config.js",
"build": "tsc",
"prepublish": "npm run build",
"coverage": "c8 report",
"lint": "eslint --ext .ts src",
"verify": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/map-transform.git"
},
"engines": {
"node": ">= 14"
},
"bugs": {
"url": "https://github.com/integreat-io/map-transform/issues"
},
"homepage": "https://github.com/integreat-io/map-transform#readme",
"dependencies": {
"deepmerge": "^4.3.1",
"map-any": "^1.0.0"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^6.0.4",
"@types/deep-freeze": "^0.1.5",
"@types/node": "^22.10.1",
"@types/sinon": "^17.0.3",
"deep-freeze": "0.0.1",
"sinon": "^19.0.2"
}
}