-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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
{
"name": "mani-injector",
"version": "0.0.4-0",
"description": "Very fast and lightweight dependency injection for typescript",
"author": "Jan Mankopf",
"keywords": [
"dependency injection",
"dependency",
"injection",
"ioc",
"container",
"javascript",
"typescript"
],
"license": "MIT",
"main": "dist/cjs/injector.js",
"module": "./dist/esm2015/injector.js",
"es2015": "./dist/esm2015/injector.js",
"typings": "./dist/typings/injector.d.ts",
"files": [
"dist/*",
"src/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jmankopf/mani-injector.git"
},
"bugs": {
"url": "https://github.com/jmankopf/mani-injector/issues"
},
"homepage": "https://github.com/jmankopf/mani-injector#readme",
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:es2015 && npm run build:types",
"build:cjs": "tsc",
"build:es2015": "tsc -p ./typescript/tsconfig.esm2015.json",
"build:es5": "tsc -p ./typescript/tsconfig.esm5.json",
"build:types": "tsc -p ./typescript/tsconfig.types.json",
"clean": "rimraf ./dist",
"watch": "tsc -p ./typescript/tsconfig.esm2015.json --watch",
"version-up": "npm version prerelease",
"do-publish-dry": "npm publish --dry-run",
"do-publish": "npm publish",
"test": "jest",
"test-coverage": "jest --collectCoverage"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"reflect-metadata": "0.x",
"tslib": "2.x"
}
}