forked from nikku/didi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@yakit/didi",
"version": "8.0.2-beta.1",
"description": "Dependency Injection for JavaScript",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "lib/index.d.ts",
"umd:main": "dist/didi.umd.js",
"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",
"test:ann": "nyc --reporter=lcov mocha -r esm test/annotation.spec.js",
"test:objs": "nyc --reporter=lcov mocha -r esm test/*.spec.js -g 'destructered object params'",
"test:obj-ann": "nyc --reporter=lcov mocha -r esm test/annotation.spec.js -g 'object destructure'",
"integration-test": "(cd test/integration && mocha -r ts-node/register *.spec.{js,ts})",
"prepare": "run-s bundle"
},
"repository": {
"type": "git",
"url": "git://github.com/yakworks/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.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-bpmn-io": "^0.13.0",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.2",
"nyc": "^15.1.0",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist",
"lib/index.d.ts"
]
}