-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "@1999/scheduler",
"version": "0.0.9",
"description": "Node.js library for periodical tasks",
"config": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"npm": ">=5",
"node": ">=8"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rm -fr dist/ && tsc",
"lint": "tslint -p . -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm run build",
"test:unit": "mocha --reporter spec --require ts-node/register --slow 10000 --timeout 10000 'src/**/*-spec.ts'",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1999/scheduler.git"
},
"author": "Dmitrii Sorin <info@staypositive.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/1999/scheduler/issues"
},
"homepage": "https://github.com/1999/scheduler",
"dependencies": {
"debug": "^4.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/debug": "^4.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.15",
"@types/sinon": "^7.0.0",
"@types/uuid": "^3.4.4",
"mocha": "^6.0.0",
"sinon": "^7.1.1",
"ts-node": "^8.0.3",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
}
}