-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 878 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
{
"name": "inversify-agenda",
"version": "2.1.1",
"description": "inversify utilities (decorators, etc) to integrate agenda with inversify",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "npm run build && jasmine --config=jasmine.json",
"build": "tsc",
"bump:beta": "npm-bump beta",
"bump:minor": "npm-bump minor",
"prepublish": "npm run build"
},
"author": "Lautaro Cozzani",
"license": "MIT",
"dependencies": {
"agenda": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/lautarobock/inversify-agenda.git"
},
"devDependencies": {
"@types/agenda": "^4.1.0",
"@types/jasmine": "^3.3.13",
"inversify": "^5.0.1",
"jasmine": "^3.4.0",
"npm-bump": "0.0.25",
"reflect-metadata": "^0.1.13",
"typescript": "^3.5.1"
},
"types": "dist/index.d.ts"
}