gnumake
Version:
cross platform gnu make
88 lines (87 loc) • 2.4 kB
JSON
{
"name": "gnumake",
"version": "0.3.5",
"description": "cross platform gnu make",
"keywords": [
"gnumake",
"gnu",
"make",
"makefile"
],
"homepage": "https://github.com/codejamninja/gnumake",
"bugs": {
"url": "https://github.com/codejamninja/gnumake/issues",
"email": "jam@codejam.ninja"
},
"license": "MIT",
"author": {
"name": "Jam Risser",
"email": "jam@codejam.ninja",
"url": "https://codejam.ninja"
},
"files": [
"bin",
"gnumake.mk",
"install.js",
"lib"
],
"main": "lib/index.js",
"bin": {
"make": "bin/make.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codejamninja/gnumake"
},
"scripts": {
"build": "npm run test && babel src -d lib --extensions \".ts,.tsx\" --source-maps inline && tsc -d --emitDeclarationOnly",
"clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* && jest --clearCache",
"clean:purge": "jest --clearCache && git clean -fXd",
"format": "prettier --write ./**/*.{json,md,scss,yaml,yml,js,jsx,ts,tsx} --ignore-path .gitignore",
"install": "node install.js",
"lint": "npm run format && tsc --allowJs --noEmit && eslint --ext .ts,.tsx ./",
"lint:fix": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx --fix ./",
"prepublish": "npm run build",
"prepublishOnly": "rm -rf bin/make.tar.gz bin/make",
"start": "babel-node --extensions \".ts,.tsx\" src/bin",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"core-js": "^3.6.5",
"execa": "^4.0.0",
"shx": "^0.3.2",
"tar": "^6.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.3",
"@types/tar": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-jam": "^0.2.20",
"jest": "^25.4.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=6.0.0"
},
"eslintIgnore": [
"lib"
],
"jest": {
"testRegex": "tests(/|/.*/)[^_/]*[jt]sx?$",
"verbose": true
}
}