jsmodern
Version:
An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.
64 lines (63 loc) • 1.85 kB
JSON
{
"name": "jsmodern",
"version": "0.1.4",
"description": "An extension to existing JavaScript, influenced by other great languages such as Rust, Dart, Java, Golang, etc.",
"keywords": [
"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"
},
"files": [
"dist/**/*.*js.map",
"dist/**/*.*js",
"dist/**/*.d.ts.map",
"dist/**/*.d.ts"
],
"main": "dist/index",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run ts -- -p tsconfig.prod.json",
"build:test": "npm run ts -- -p tsconfig.test.json",
"build:test-es2017": "npm run ts -- -p tsconfig.test.es2017.json",
"clean": "shx rm -rf dist/",
"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": "npm run clean && tsc",
"watch": "npm run ts -- --watch",
"watch:build": "npm run ts -- --watch -p tsconfig.test.json",
"watch:test": "npm run jest -- --watchAll"
},
"dependencies": {},
"devDependencies": {
"@reallyland/tsconfig": "^1.0.0",
"@reallyland/tslint-config": "^1.1.1",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.6",
"jest": "^24.8.0",
"shx": "^0.3.2",
"tslint": "^5.17.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">= 8.16.0",
"npm": ">= 6.4.1"
},
"publishConfig": {
"access": "public"
}
}