2023-03-13 10:04:22 +00:00
|
|
|
{
|
|
|
|
|
"name": "@digiresilience/montar",
|
2023-03-13 10:22:25 +00:00
|
|
|
"version": "0.1.7",
|
2023-03-13 10:04:22 +00:00
|
|
|
"description": "manage typescript state",
|
|
|
|
|
"main": "build/main/index.js",
|
|
|
|
|
"typings": "build/main/index.d.ts",
|
|
|
|
|
"module": "build/module/index.js",
|
|
|
|
|
"author": "Abel Luck <abel@guardianproject.info>",
|
|
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
|
"private": false,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc -p tsconfig.json",
|
|
|
|
|
"fix:lint": "eslint src --ext .ts --fix",
|
|
|
|
|
"fmt": "prettier \"src/**/*.ts\" --write",
|
|
|
|
|
"test": "DEBUG=montar jest --config jest.config.json",
|
|
|
|
|
"lint": "eslint src --ext .ts",
|
|
|
|
|
"lint-fmt": "prettier \"src/**/*.ts\" --list-different",
|
|
|
|
|
"doc": "typedoc src/ --exclude '**/*.test.ts' --exclude '**/*.spec.ts' --name $npm_package_name --readme README.md --target es2019 --mode file --out build/docs",
|
|
|
|
|
"watch:build": "tsc -p tsconfig.json -w"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=14"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"tsconfig-link": "*",
|
|
|
|
|
"eslint-config-link": "*",
|
|
|
|
|
"jest-config-link": "*",
|
|
|
|
|
"babel-preset-link": "*"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"debug": "^4.3.2"
|
|
|
|
|
}
|
|
|
|
|
}
|