iterize
Version:
Use JavaScript Iterator, Easily
78 lines (77 loc) • 2.09 kB
JSON
{
"name": "iterize",
"version": "1.5.0",
"description": "Use JavaScript Iterator, Easily",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hg-pyun/iterize.git"
},
"author": "Haegul Pyun",
"license": "MIT",
"bugs": {
"url": "https://github.com/hg-pyun/iterize/issues"
},
"homepage": "https://github.com/hg-pyun/iterize#readme",
"keywords": [
"library",
"iterator",
"generator",
"es6",
"helper",
"iterable",
"iterable protocol",
"lazy evaluation",
"reuse",
"effective",
"productive",
"tool",
"functional",
"higher-order-function"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"babel-loader": "^8.0.4",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.3.3333",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@babel/runtime": "^7.2.0"
},
"scripts": {
"deploy": "npm test && npm run build && npm publish",
"build": "npm run build:types && npm run build:lib && npm run build:umd",
"build:types": "tsc --emitDeclarationOnly",
"build:lib": "cross-env BABEL_ENV=production babel src --out-dir lib --extensions '.ts'",
"build:umd": "cross-env BABEL_ENV=production webpack",
"test": "mocha --recursive ./test/*.ts --require ts-node/register",
"test:watch": "mocha --recursive --watch-extensions ts --watch ./test/*.ts --require ts-node/register"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}