forked from inversify/InversifyJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.93 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
{
"author": "Remo H. Jansen",
"bugs": {
"url": "https://github.com/inversify/InversifyJS/issues"
},
"description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
"devDependencies": {
"@types/chai": "4.3.6",
"@types/mocha": "10.0.1",
"@types/sinon": "10.0.16",
"chai": "4.3.8",
"istanbul": "0.4.5",
"mocha": "10.2.0",
"nyc": "15.1.0",
"publish-please": "5.5.2",
"reflect-metadata": "0.1.13",
"sinon": "16.0.0",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "4.4.4",
"updates": "15.0.2"
},
"engines": {},
"homepage": "http://inversify.io",
"jsnext:main": "es/inversify.js",
"keywords": [
"dependency injection",
"dependency inversion",
"di",
"inversion of control container",
"ioc",
"javascript",
"node",
"typescript"
],
"license": "MIT",
"main": "lib/inversify.js",
"module": "es/inversify.js",
"name": "inversify",
"repository": {
"type": "git",
"url": "https://github.com/inversify/InversifyJS.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:amd && npm run build:es && npm run build:es6",
"build:amd": "tsc -p src/tsconfig-amd.json",
"build:es": "tsc -p src/tsconfig-es.json",
"build:es6": "tsc -p src/tsconfig-es6.json",
"build:lib": "tsc -p src/tsconfig.json",
"clean": "rm -r amd es lib",
"postupdate": "git diff-files --quiet package-lock.json || npm test",
"prepublish": "npm run build && publish-please guard",
"pretest": "tslint --project .",
"publish-please": "publish-please",
"test": "nyc --reporter=lcov --require ts-node/register mocha test/**/*.test.ts --reporter spec --retries 3 --require 'node_modules/reflect-metadata/Reflect.js' --exit",
"update": "updates --update --minor && npm install"
},
"sideEffects": false,
"types": "lib/inversify.d.ts",
"version": "6.0.1"
}