-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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
64
65
{
"name": "di1",
"version": "0.4.3",
"author": "Bogdan Savluk <[email protected]>",
"description": "Simple but yet powerful, DI container for JavaScript or TypeScript",
"keywords": [
"DI",
"dependency injection",
"ioc",
"container",
"JavaScript",
"TypeScript"
],
"repository": {
"type": "git",
"url": "https://github.com/zxbodya/di1"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/* --quiet",
"cover": "jest --coverage",
"test": "jest",
"build": "rimraf lib && rollup -c",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"temp-dir": "^2.0.0",
"typescript": "^4.4.2"
},
"dependencies": {
"tslib": "^2.3.1"
},
"prettier": {
"singleQuote": true
},
"jest": {
"testEnvironment": "node",
"roots": [
"src"
]
}
}