-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "injection-js",
"version": "2.4.0",
"description": "Dependency Injection library for JavaScript and TypeScript",
"main": "injection.bundle.js",
"module": "index.js",
"jsnext:main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=8.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/injection-js.git"
},
"dependencies": {
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^4.1.0",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"typescript": "^4.6.3"
},
"scripts": {
"prebuild": "npm run verify && npm t",
"build": "rimraf dist && tsc && rollup -c rollup.config.js -i dist/index.js > dist/injection.bundle.js && node tools/copy.js",
"pretest": "rimraf dist/test && tsc -p tsconfig-es5.test.json && tsc -p tsconfig-es2015.test.json",
"test": "jasmine",
"format": "eslint -c .eslintrc.js lib/**/*.ts --fix && eslint -c .eslintrc.js test/*.ts --fix",
"lint": "eslint -c .eslintrc.js lib/**/*.ts && eslint -c .eslintrc.js test/*.ts",
"verify": "tsc -p tools && npm run format && npm run lint"
},
"keywords": [
"DI",
"dependency",
"injection",
"dependency injection",
"injector"
],
"author": "Minko Gechev <[email protected]>",
"license": "MIT"
}