-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "@drawbotics/morphey",
"version": "1.7.0",
"description": "A small utility to transform keys and values of an object using a template.",
"type": "module",
"main": "lib/index.cjs",
"module": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.cjs"
}
},
"sideEffects": false,
"engines": {
"node": ">=14"
},
"repository": "https://github.com/Drawbotics/morphey.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Lorenzo Ruiz <lars.bs@hotmail.com>",
"license": "MIT",
"files": [
"src",
"lib"
],
"scripts": {
"build": "esbuild src/index.js --bundle --format=cjs --outfile=lib/index.cjs",
"test": "mocha --reporter spec test/*.js test/**/*.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"chai": "^4.5.0",
"esbuild": "^0.27.4",
"mocha": "^11.1.0"
},
"overrides": {
"serialize-javascript": "^7.0.3",
"diff": "^8.0.3"
}
}