-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "@argus-inc/chronos",
"version": "0.0.3",
"description": "A simple node library for adding and managing cronjobs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Burlet Mederic",
"license": "GNU-GPL-3-0-only",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/argus-inc/chronos"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/argus-inc"
},
"files": [
"dist/**/*"
],
"scripts": {
"dev": "nodemon",
"build": "tsc",
"test": "jest --config jest.json",
"chronos": "node dist/index.js",
"prepare": "yarn run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"patch": "npm version patch && npm publish"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.13",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"dependencies": {
"@argus-inc/fluct": "https://github.com/argus-inc/fluct",
"@argus-inc/logger": "https://github.com/argus-inc/logger",
"yargs": "^15.4.1"
}
}