-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 907 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
{
"name": "tscron",
"version": "1.0.0",
"description": "TS-CRON is a library for cron, supports finding the next time a cron will run along with its description.",
"main": "index.js",
"dependencies": {
"tslint": "^6.1.3",
"@types/minimist": "^1.2.1",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register test/errors.ts test/**/*.ts",
"lint": "tslint --project .",
"compile": "tsc"
},
"author": "Pallav Jha <pallav_kumar71@yahoo.com>",
"license": "CC0-1.0",
"directories": {
"src": "./src",
"test": "./test"
},
"repository": {
"type": "git",
"url": "https://github.com/pallavJha/tscron.git"
}
}