wishthis/node_modules/undertaker/package.json

62 lines
1.6 KiB
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "undertaker",
"version": "1.3.0",
"description": "Task registry that allows composition through series/parallel methods.",
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
"contributors": [
"Blaine Bublitz <blaine.bublitz@gmail.com>",
"Damien Lebrun <dinoboff@hotmail.com>"
2022-01-21 08:28:41 +00:00
],
2022-04-08 10:55:35 +00:00
"repository": "gulpjs/undertaker",
"license": "MIT",
"engines": {
"node": ">= 0.10"
2022-01-21 08:28:41 +00:00
},
2022-04-08 10:55:35 +00:00
"main": "index.js",
"files": [
"LICENSE",
"index.js",
"lib"
2022-01-21 08:28:41 +00:00
],
2022-04-08 10:55:35 +00:00
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha --async-only",
"azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
2022-02-23 16:41:13 +00:00
},
2022-01-21 08:28:41 +00:00
"dependencies": {
"arr-flatten": "^1.0.1",
"arr-map": "^2.0.0",
"bach": "^1.0.0",
"collection-map": "^1.0.0",
"es6-weak-map": "^2.0.1",
"last-run": "^1.1.0",
"object.defaults": "^1.0.0",
"object.reduce": "^1.0.0",
2022-04-08 10:55:35 +00:00
"undertaker-registry": "^1.0.0",
"fast-levenshtein": "^1.0.0"
2022-01-21 08:28:41 +00:00
},
"devDependencies": {
"async-once": "^1.0.0",
"coveralls": "github:phated/node-coveralls#2.x",
"del": "^2.0.2",
"eslint": "^2.13.1",
"eslint-config-gulp": "^3.0.1",
"expect": "^1.20.2",
"gulp-jshint": "^1.8.4",
"mocha": "^3.0.0",
"nyc": "^10.3.2",
"once": "^1.3.1",
"through2": "^2.0.0",
"undertaker-common-tasks": "^1.0.0",
"undertaker-task-metadata": "^1.0.0",
"vinyl-fs": "^2.2.0"
},
"keywords": [
"registry",
"runner",
"task"
2022-04-08 10:55:35 +00:00
]
2022-01-21 08:28:41 +00:00
}