Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Mar 20, 2024
2 parents c5ebec1 + de975fe commit 88a66f7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ bun.lockb
*.dump
*.node
.DS_Store
types
.test
.tmp
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![npm](https://img.shields.io/npm/v/config-expander.svg)](https://www.npmjs.com/package/config-expander)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Typed with TypeScript](https://flat.badgen.net/badge/icon/Typed?icon=typescript\&label\&labelColor=blue\&color=555555)](https://typescriptlang.org)
[![bundlejs](https://deno.bundlejs.com/?q=config-expander\&badge=detailed)](https://bundlejs.com/?q=config-expander)
[![downloads](http://img.shields.io/npm/dm/config-expander.svg?style=flat-square)](https://npmjs.org/package/config-expander)
[![GitHub Issues](https://img.shields.io/github/issues/arlac77/config-expander.svg?style=flat-square)](https://github.com/arlac77/config-expander/issues)
Expand Down
17 changes: 12 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"provenance": true
},
"exports": {
".": "./src/expander.mjs"
".": {
"default": "./src/expander.mjs"
}
},
"description": "Expands expressions in config files",
"keywords": [
Expand All @@ -22,12 +24,15 @@
],
"license": "BSD-2-Clause",
"scripts": {
"prepare": "npm run prepare:typescript",
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule -t esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
"test": "npm run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme --section=API ./src/**/*.mjs",
"lint": "npm run lint:docs",
"lint:docs": "documentation lint ./src/**/*.mjs"
"lint": "npm run lint:docs && npm run lint:typescript",
"lint:docs": "documentation lint ./src/**/*.mjs",
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule -t esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
},
"dependencies": {
"expression-expander": "^7.2.4",
Expand All @@ -37,7 +42,8 @@
"ava": "^6.1.2",
"c8": "^9.1.0",
"documentation": "^14.0.3",
"semantic-release": "^23.0.5"
"semantic-release": "^23.0.5",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=16.20.2"
Expand All @@ -53,7 +59,8 @@
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-javascript-component"
"arlac77/template-javascript-component",
"arlac77/template-typescript"
]
}
}

0 comments on commit 88a66f7

Please sign in to comment.