-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "default-composer",
"version": "0.6.0",
"description": "A JavaScript library that allows you to set default values for nested objects",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"exports": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.mjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aralroca/default-composer.git"
},
"keywords": [
"default",
"composer",
"merge",
"mix",
"nested",
"defaults",
"json",
"tree",
"javascript",
"typescript"
],
"author": "Aral Roca <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aralroca/default-composer/issues"
},
"homepage": "https://github.com/aralroca/default-composer#readme",
"scripts": {
"test": "bun test src/index.test.ts",
"test:watch": "bun --watch test src/index.test.ts",
"build": "microbundle",
"dev": "microbundle watch",
"format": "npx prettier --write .",
"prepublish": "bun run build"
},
"devDependencies": {
"@babel/preset-typescript": "7.21.5",
"microbundle": "0.15.1"
}
}