-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 979 Bytes
/
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
{
"name": "headwater",
"version": "0.4.0",
"description": "Dependency Injection for TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/sjohnsonaz/headwater"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc",
"clean": "rimraf ./dist",
"prepublishOnly": "rimraf ./dist && tsc --declaration",
"test": "jest --verbose --coverage",
"node": "node ./dist/index.js",
"examples": "tsc --project examples/tsconfig.json && node ./dist-examples/main.js"
},
"devDependencies": {
"@types/jest": "26.0.14",
"jest": "27.2.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"keywords": [
"dependency injection",
"dependency",
"injection",
"inversion of control",
"ioc",
"di"
],
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}