@yagisumi/hello
Version:
56 lines (55 loc) • 1.97 kB
JSON
{
"name": "@yagisumi/hello",
"version": "1.3.2",
"engines": {
"node": ">= 8"
},
"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": "^26.0.9",
"@types/node": "^14.0.27",
"coveralls": "^3.1.0",
"jest": "^26.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.24.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
},
"dependencies": {}
}