-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.07 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@technove/inject",
"description": "Dependency injection for TypeScript",
"version": "0.1.12",
"author": "PaulBGD",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "mocha",
"package": "pika build",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"tsconfig": "publish.tsconfig.json"
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false
},
"dependencies": {},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.3.4",
"eslint": "^8.2.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TECHNOVE/inject.git"
},
"keywords": [
"dependency",
"injection",
"typescript",
"library"
],
"bugs": {
"url": "https://github.com/TECHNOVE/inject/issues"
},
"homepage": "https://github.com/TECHNOVE/inject#readme"
}