xduce
Version:
Composable algorithmic transformations library for JavaScript
86 lines (85 loc) • 2.48 kB
JSON
{
"name": "xduce",
"version": "2.0.2",
"description": "Composable algorithmic transformations library for JavaScript",
"main": "src/api.js",
"scripts": {
"cz": "git-cz",
"clean": "rimraf dist",
"clean:docs": "rimraf docs/api",
"build": "npm run clean && npm run bundle && npm run bundle:min",
"bundle": "webpack --progress --colors --config webpack.config.js",
"bundle:min": "webpack --progress --colors --config webpack.config.min.js",
"docs": "node_modules/.bin/jsdoc -c ./jsdoc.json",
"lint": "eslint ./src",
"test": "mocha --recursive",
"test:cover": "nyc mocha --recursive",
"test:check": "nyc --check-coverage --lines 80 --branches 80 --functions 80 --statements 80 mocha --recursive",
"test:cover:upload": "npm run test:cover -s && cat ./coverage/lcov.info | coveralls",
"test:watch": "npm run test -- --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"transducer",
"transformer",
"csp",
"functional"
],
"repository": {
"type": "git",
"url": "https://github.com/Barandis/xduce.git"
},
"bugs": {
"url": "https://github.com/Barandis/xduce/issues"
},
"author": "Thomas Otterson <tjotterson@gmail.com>",
"license": "MIT",
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.1.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"commitizen": "^2.9.6",
"coveralls": "^2.12.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^5.8.0",
"husky": "^1.1.3",
"immutable": "^4.0.0-rc.12",
"jsdoc": "^3.5.5",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"semantic-release": "^7.0.2",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test:check"
}
},
"lint-staged": {
"*.js": [
"prettier --print-width 120 --single-quote --write",
"eslint --fix",
"git add"
]
}
}