forked from microsoft/tsyringe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
63
{
"name": "tsyringe",
"version": "4.7.0",
"description": "Lightweight dependency injection container for JavaScript/TypeScript",
"main": "dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm2015/index.js",
"typings": "./dist/typings/index.d.ts",
"scripts": {
"build": "yarn clean && yarn build:cjs && yarn build:es5 && yarn build:es2015 && yarn build:types",
"build:cjs": "tsc",
"build:es5": "tsc -p ./typescript/tsconfig.esm5.json",
"build:es2015": "tsc -p ./typescript/tsconfig.esm2015.json",
"build:types": "tsc -p ./typescript/tsconfig.types.json",
"clean": "rimraf ./dist",
"test": "yarn lint && jest --config test/jest.config.js",
"test:inspect": "yarn lint && node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config test/jest.config.js",
"test:coverage": "jest --config test/jest.config.js --coverage",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
"lint:fix": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" \"./src\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/tsyringe.git"
},
"keywords": [
"dependency injection",
"dependency",
"injection",
"ioc",
"container",
"javascript",
"typescript"
],
"engines": {
"node": ">= 6.0.0"
},
"author": "Steven Hobson-Campbell",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/tsyringe/issues"
},
"homepage": "https://github.com/Microsoft/tsyringe#readme",
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^8.10.16",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.0",
"jest": "^24.7.1",
"prettier": "1.18.2",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.1.6"
}
}