jstd-web/node_modules/didi/package.json

58 lines
1.6 KiB
JSON
Raw Normal View History

2025-11-25 15:23:22 +08:00
{
"name": "didi",
"version": "9.0.2",
"description": "Dependency Injection for JavaScript",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "lib/index.d.ts",
"source": "lib/index.js",
"scripts": {
"all": "run-s lint test bundle check-types integration-test",
"bundle": "cross-env NODE_ENV=production rollup -c",
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .ts --ext .js .",
"lint:tsc": "tsc --pretty --noEmit",
"check-types": "run-s check-types:*",
"check-types:test": "tsc --project test --pretty --noEmit",
"check-types:integration": "tsc --project test/integration --pretty --noEmit",
"test": "nyc --reporter=lcov mocha -r esm test/*.spec.js",
"integration-test": "(cd test/integration && mocha -r ts-node/register *.spec.{js,ts})",
"prepare": "run-s bundle"
},
"repository": {
"type": "git",
"url": "git://github.com/nikku/didi.git"
},
"keywords": [
"di",
"inversion of control",
"dependency",
"injection",
"injector"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^8.2.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-plugin-bpmn-io": "^0.14.1",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.2",
"nyc": "^15.1.0",
"rollup": "^2.75.7",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist",
"lib/index.d.ts"
]
}