login/node_modules/asyncc/package.json
2024-03-04 14:04:27 +08:00

86 lines
2.3 KiB
JSON

{
"name": "asyncc",
"version": "2.0.6",
"description": "Just asynchronous patterns",
"keywords": [
"async",
"callback"
],
"homepage": "https://commenthol.github.io/asyncc/",
"bugs": {
"url": "https://github.com/commenthol/asyncc/issues"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"directories": {
"lib": "lib",
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/asyncc.git"
},
"scripts": {
"all": "npm run clean && npm run lint && npm run build && npm test",
"build": "npm run build:cjs && npm run build:dist",
"build:cjs": "babel -d lib src",
"build:dist": "rollup -c scripts/rollup.conf.js",
"clean": "rimraf lib es coverage .nyc_output",
"clean:all": "rimraf node_modules && npm run clean",
"coverage": "nyc -r text -r html npm run test:mocha",
"doc": "jsdoc -c scripts/jsdoc/jsdoc.json",
"lint": "eslint '**/*.js'",
"prepublishOnly": "npm run all",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "npm run test:mocha && npm run test:karma",
"test:karma": "karma start",
"test:mocha": "mocha"
},
"eslintConfig": {
"extends": "standard",
"plugins": [
"standard"
],
"rules": {
"spaced-comment": 0
}
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/register": "^7.14.5",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"core-js": "^3.16.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jsdoc": "^3.6.7",
"karma": "^6.3.4",
"karma-browserify": "^8.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"minami": "^1.2.3",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.55.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-terser": "^7.0.2"
},
"engines": {
"node": ">=6.0.0"
},
"maintainers": [
"commenthol <commenthol@gmail.com>"
]
}