-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 869 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
{
"name": "ts-simple-dependency-injector",
"version": "1.2.0",
"description": "Simple TypeScript Dependency Injection Usable with React Components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/BoosterOfOld/ts-simple-dependency-injector.git"
},
"keywords": [
"dependency",
"injection",
"container"
],
"scripts": {
"all": "npm-run-all build build-test test",
"build": "tsc -p tsconfig.json",
"build-test": "tsc -p tsconfig-test.json",
"prepublish": "npm-run-all all",
"test": "jasmine JASMINE_CONFIG_PATH=jasmine.json"
},
"files": [
"dist"
],
"author": "BoosterOfOld",
"license": "MIT",
"devDependencies": {
"typescript": "^3.5.3",
"jasmine": "^3.4.0",
"@types/jasmine": "^3.3.13",
"npm-run-all": "^4.1.5"
}
}