UNPKG

@yagisumi/hello

Version:
54 lines (53 loc) 1.94 kB
{ "name": "@yagisumi/hello", "version": "1.3.0", "description": "say hello", "keywords": [], "private": false, "main": "lib/hello", "module": "lib/hello.mjs", "types": "lib/hello.d.ts", "unpkg": "umd/hello.js", "scripts": { "test": "jest", "doc": "typedoc --tsconfig ./src/tsconfig.json --json ./docs/typedoc.json ./src", "build": "run-s clean build:*", "clean": "rimraf lib coverage umd {src,test}/**/*.{js,mjs,map,d.ts} *.tgz .rpt2_cache", "build:cjs": "rollup -c -f cjs -o ./lib/hello.js", "build:mjs": "rollup -c -f es -o ./lib/hello.mjs", "build:umd": "rollup -c rollup.config.umd.js", "build:d_ts": "tsc -p src -d --emitDeclarationOnly --outDir ./lib", "postbuild:d_ts": "node -e \"require('rimraf').sync('lib/*.d.ts', { glob: { ignore: 'lib/hello.d.ts' } })\"", "tslint": "tslint --exclude **/*.d.ts lib/**/*.{ts,tsx} test/**/*.ts", "tslint:json": "tslint --format json --exclude **/*.d.ts lib/**/*.{ts,tsx} test/**/*.ts", "tslint:fix": "tslint --fix --exclude **/*.d.ts lib/**/*.{ts,tsx} test/**/*.ts", "prepack": "run-s build test" }, "author": "Yagi Sumiya", "repository": "github:yagisumi/node-hello", "homepage": "http://github.com/yagisumi/node-hello#readme", "license": "MIT", "devDependencies": { "@types/jest": "^23.3.10", "@types/node": "^10.12.12", "coveralls": "^3.0.2", "jest": "^23.6.0", "npm-run-all": "^4.1.5", "prettier": "^1.15.3", "rimraf": "^2.6.2", "rollup": "^1.0.0", "rollup-plugin-commonjs": "^9.2.0", "rollup-plugin-istanbul": "^2.0.1", "rollup-plugin-node-resolve": "^4.0.0", "rollup-plugin-typescript2": "^0.18.1", "ts-jest": "^23.10.5", "tslint": "^5.11.0", "tslint-config-prettier": "^1.17.0", "tslint-plugin-prettier": "^2.0.1", "typedoc": "^0.13.0", "typescript": "^3.2.2" }, "dependencies": { "rollup-plugin-terser": "^3.0.0" } }