-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 2.5 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "tasktimer",
"version": "3.0.0",
"description": "An accurate timer utility for running periodic tasks on the given interval ticks or dates. (Node and Browser)",
"author": "Onur Yıldırım <[email protected]>",
"license": "MIT",
"main": "lib/tasktimer.min.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"LICENSE"
],
"scripts": {
"audit": "npm audit --production",
"size": "gzip-size ./lib/tasktimer.min.js",
"clean": "rimraf ./lib",
"build:dev": "webpack --mode=development --env.WEBPACK_OUT=development --progress --colors",
"build:prod": "webpack --mode=production --env.WEBPACK_OUT=production --progress --colors",
"build": "npm run clean && npm run build:dev && npm run build:prod",
"test": "jest --coverage --verbose --no-cache --runInBand -c ./jest.json",
"test:browser": "npm run clean && npm run build:dev && jest --verbose --no-cache --runInBand -c ./jest-puppeteer.json",
"test:serve": "node ./test/_server",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"docs": "npm run build:dev && docma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onury/tasktimer.git"
},
"keywords": [
"timer",
"interval",
"tick",
"task",
"schedule",
"timeout",
"alarm",
"clock",
"time",
"job",
"work",
"run"
],
"bugs": {
"url": "https://github.com/onury/tasktimer/issues"
},
"homepage": "https://github.com/onury/tasktimer#readme",
"devDependencies": {
"@types/expect-puppeteer": "^3.3.1",
"@types/jest": "^24.0.16",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/puppeteer": "^1.19.0",
"coveralls": "^3.0.5",
"docma": "^3.2.2",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^1.4.3",
"is-ci": "^2.0.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-environment-node": "^24.8.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^1.19.0",
"rimraf": "^2.6.3",
"table": "^5.4.5",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"eventemitter3": "^4.0.0"
}
}