131 lines
3.6 KiB
JSON
131 lines
3.6 KiB
JSON
{
|
|
"name": "@wessberg/ts-evaluator",
|
|
"version": "0.0.27",
|
|
"description": "An interpreter for Typescript that can evaluate an arbitrary Node within a Typescript AST",
|
|
"scripts": {
|
|
"generate:scaffold": "scaffold all --yes",
|
|
"generate:changelog": "standard-changelog --first-release",
|
|
"generate:all": "pnpm run generate:scaffold && pnpm run generate:changelog",
|
|
"clean": "rimraf dist",
|
|
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color",
|
|
"prettier": "prettier --write '{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}'",
|
|
"test": "ava",
|
|
"prebuild": "pnpm run clean",
|
|
"build": "pnpm run rollup",
|
|
"watch": "pnpm run rollup -- --watch",
|
|
"rollup": "rollup -c rollup.config.js",
|
|
"preversion": "pnpm run lint && NODE_ENV=production pnpm run build",
|
|
"version": "pnpm run generate:all && git add .",
|
|
"release": "np --no-cleanup --no-yarn",
|
|
"update": "pnpx npm-check-updates -u -x np --dep dev,prod && pnpm update && pnpm install"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"ts",
|
|
"interpreter",
|
|
"evaluate",
|
|
"evaluator",
|
|
"ast"
|
|
],
|
|
"files": [
|
|
"dist/**/*.*"
|
|
],
|
|
"contributors": [
|
|
{
|
|
"name": "Frederik Wessberg",
|
|
"email": "frederikwessberg@hotmail.com",
|
|
"url": "https://github.com/wessberg",
|
|
"imageUrl": "https://avatars2.githubusercontent.com/u/20454213?s=460&v=4",
|
|
"role": "Lead Developer",
|
|
"twitter": "FredWessberg",
|
|
"github": "wessberg"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.5.0",
|
|
"@typescript-eslint/parser": "^4.5.0",
|
|
"@wessberg/rollup-plugin-ts": "^1.3.5",
|
|
"@wessberg/scaffold": "^1.0.32",
|
|
"@wessberg/ts-config": "^1.0.19",
|
|
"@types/semver": "^7.3.4",
|
|
"@types/node": "^14.14.0",
|
|
"@types/object-path": "^0.11.0",
|
|
"@types/jsdom": "^16.2.4",
|
|
"ava": "^3.13.0",
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-prettier": "^6.13.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jsdoc": "^30.7.3",
|
|
"husky": "^4.3.0",
|
|
"np": "5.2.1",
|
|
"pnpm": "^5.9.3",
|
|
"prettier": "^2.1.2",
|
|
"fast-glob": "^3.2.4",
|
|
"pretty-quick": "^3.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.32.0",
|
|
"slash": "^3.0.0",
|
|
"semver": "7.3.2",
|
|
"standard-changelog": "^2.0.24",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "4.1.0-beta",
|
|
"typescript-3-0-1": "npm:typescript@3.0.1",
|
|
"typescript-3-1-1": "npm:typescript@3.1.1",
|
|
"typescript-3-2-1": "npm:typescript@3.2.1",
|
|
"typescript-3-3-1": "npm:typescript@3.3.1",
|
|
"typescript-3-4-1": "npm:typescript@3.4.1",
|
|
"typescript-3-5-1": "npm:typescript@3.5.1",
|
|
"typescript-3-6-2": "npm:typescript@3.6.2",
|
|
"typescript-3-7-2": "npm:typescript@3.7.2",
|
|
"typescript-3-8-3": "npm:typescript@3.8.3",
|
|
"typescript-3-9-2": "npm:typescript@3.9.2",
|
|
"typescript-4-0-3": "npm:typescript@4.0.3"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.0",
|
|
"object-path": "^0.11.5",
|
|
"tslib": "^2.0.3",
|
|
"jsdom": "^16.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=3.2.x || >= 4.x"
|
|
},
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"browser": "./dist/esm/index.js",
|
|
"types": "./dist/esm/index.d.ts",
|
|
"typings": "./dist/esm/index.d.ts",
|
|
"es2015": "./dist/esm/index.js",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/wessberg/ts-evaluator?sponsor=1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/wessberg/ts-evaluator.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/wessberg/ts-evaluator/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.1.0"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"test/**/**.test.ts"
|
|
],
|
|
"verbose": true,
|
|
"timeout": "300s",
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"environmentVariables": {
|
|
"NODE_OPTIONS": "--max_old_space_size=4096"
|
|
},
|
|
"require": [
|
|
"ts-node/register/transpile-only"
|
|
]
|
|
}
|
|
}
|