UNPKG

imod

Version:

A bundler for tiny modules, powered by Rollup.

61 lines (60 loc) 1.68 kB
{ "name": "imod", "version": "1.5.0", "description": "A bundler for tiny modules, powered by Rollup.", "keywords": [ "rollup", "tiny module", "typescript" ], "homepage": "https://github.com/haozi/iMod", "bugs": "https://github.com/haozi/iMod/issues", "license": "MIT", "main": "src/index.js", "types": "src/index.d.ts", "bin": { "iMod": "bin/imod", "imod": "bin/imod", "imode": "bin/imod" }, "scripts": { "build": "yarn run clean && yarn run lint && tsc", "clean": "rimraf {src,test,spec,__tests__,scriptsty}/**/*.{js,map,d.ts}", "debug": "node --inspect-brk src/index.js", "dev": "yarn run lint && yarn run clean && tsc -w", "jasmine": "nyc jasmine '{src/**/,}{test,spec,__tests__}/**/*.js'", "lint": "tslint --project tsconfig.json --format stylish --fix", "prepublishOnly": "yarn run build", "test": "# yarn run build && yarn run jasmine" }, "dependencies": { "@rollup/plugin-replace": "^2.2.1", "@types/node": "^12.12.14", "camelcase": "^5.3.1", "colors": "^1.4.0", "glob": "^7.1.6", "jsonuri": "^2.2.0", "mkdirp": "^0.5.1", "npm-updater": "^3.0.3", "ora": "^4.0.3", "rimraf": "^3.0.0", "rollup": "^1.27.8", "rollup-plugin-typescript2": "^0.25.3", "rollup-plugin-uglify-es": "^0.0.1", "standard": "^14.3.1", "tslib": "^1.10.0", "typescript": "^3.7.3", "yargs": "^15.0.2" }, "devDependencies": { "@types/jasmine": "^3.5.0", "@types/shelljs": "^0.8.6", "jasmine": "^3.5.0", "nyc": "^14.1.1", "tslint": "^5.20.1", "tslint-config-standard": "^9.0.0" }, "engines": { "node": ">= 8" } }