@scalenc/tmt-format
Version:
Library for handling TRUMPF TMT file format.
76 lines (75 loc) • 1.85 kB
JSON
{
"name": "@scalenc/tmt-format",
"version": "1.3.0",
"description": "Library for handling TRUMPF TMT file format.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "mocha -r ts-node/register tests/*.test.ts --exit",
"coverage": "nyc --reporter lcov --reporter text yarn test",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/scalenc/tmt-format.git"
},
"keywords": [
"tmt",
"TRUMPF"
],
"author": "scalenc",
"bugs": {
"url": "https://github.com/scalenc/tmt-format/issues"
},
"homepage": "https://github.com/scalenc/tmt-format",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"commitlint": "^12.1.4",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"license": "BSD-3-CLAUSE",
"mocha": {
"diff": true,
"extension": [
"ts"
],
"spec": "tests/**/*.test.ts",
"require": "ts-node/register",
"watch-files": [
"src/**/*.ts",
"tests/**/*.ts"
],
"watch-ignore": []
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"./node_modules/.bin/eslint"
],
"*.{js,jsx,ts,tsx,json,md}": [
"./node_modules/.bin/prettier --list-different"
]
},
"files": [
"/dist"
]
}