UNPKG

jsmodern

Version:

An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.

74 lines (73 loc) 1.94 kB
{ "name": "jsmodern", "version": "0.9.0", "description": "An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.", "keywords": [ "extensions", "javascript", "javascript-extensions", "jsmodern", "node", "typescript" ], "homepage": "https://github.com/motss/jsmodern", "repository": { "type": "git", "url": "git@github.com:motss/jsmodern.git" }, "license": "MIT", "author": { "name": "Rong Sen Ng (motss)", "email": "wes.ngrongsen@gmail.com", "url": "https://github.com/motss" }, "main": "dist/index", "module": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist/**/*.*js.map", "dist/**/*.*js", "dist/**/*.d.ts.map", "dist/**/*.d.ts" ], "scripts": { "build": "tsc -p tsconfig.prod.json", "build:test": "tsc -p tsconfig.test.json", "clean": "shx rm -rf dist/ .*cache *.log", "jest": "jest --config ./.jestrc.json", "lint": "npm run lint:debug -- --config tslint.prod.json", "lint:debug": "tslint --project tsconfig.json --format stylish", "prepublishOnly": "npm run lint && npm run build", "test": "npm run lint && npm run build:test && npm run jest", "ts": "tsc", "watch": "tsc --watch", "watch:build": "npm run build:test -- --watch", "watch:test": "npm run jest -- --watchAll" }, "husky": { "hooks": { "pre-commit": "npm run lint && tsc --noEmit" } }, "dependencies": { "tslib": "^1.10.0" }, "devDependencies": { "@reallyland/tsconfig": "^2.0.0", "@reallyland/tslint-config": "^1.1.1", "@types/jest": "^24.9.1", "@types/node": "^13.9.8", "husky": "^4.2.3", "jest": "^24.9.0", "shx": "^0.3.2", "tslint": "^6.1.0", "typescript": "^3.8.3" }, "engines": { "node": ">= 10.18.1", "npm": ">= 6.13.4" }, "publishConfig": { "access": "public" } }