@spinajs/configuration-http 2.0.133

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +53 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # `@spinajs/configuration-common`
2
+
3
+ > TODO: description
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ const configurationCommon = require('@spinajs/configuration-common');
9
+
10
+ // TODO: DEMONSTRATE API
11
+ ```
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@spinajs/configuration-http",
3
+ "version": "2.0.133",
4
+ "description": "API for configuration module. Allows to set / get configuration values from db",
5
+ "author": "Grzegorz Beń <grzegorz.ben@coderush.pl>",
6
+ "homepage": "https://github.com/spinajs/main#readme",
7
+ "license": "ISC",
8
+ "main": "./lib/cjs/index.js",
9
+ "module": "./lib/mjs/index.js",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./lib/mjs/index.js",
13
+ "require": "./lib/cjs/index.js"
14
+ }
15
+ },
16
+ "type": "module",
17
+ "private": false,
18
+ "engines": {
19
+ "node": ">=16.11"
20
+ },
21
+ "files": [
22
+ "lib/**/*"
23
+ ],
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/spinajs/main.git"
30
+ },
31
+ "scripts": {
32
+ "build": "npm run clean && npm run compile",
33
+ "compile": "tsc -b tsconfig.mjs.json",
34
+ "compile:cjs": "tsc -b tsconfig.cjs.json",
35
+ "rimraf": "./node_modules/rimraf/bin.js",
36
+ "clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
37
+ "test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
38
+ "coverage": "nyc npm run test",
39
+ "build-docs": "rimraf docs && typedoc --options typedoc.json src/",
40
+ "format": "prettier --write \"src/**/*.ts\"",
41
+ "lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
42
+ "preversion": "npm run lint",
43
+ "version": "npm run format && git add -A src"
44
+
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/spinajs/main/issues"
48
+ },
49
+ "dependencies": {
50
+ "@spinajs/di": "^2.0.133"
51
+ },
52
+ "gitHead": "002dc553b0ffffd72193d0121ac425a4083bc9ee"
53
+ }