forked from bunkat/later
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.07 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
{
"name": "@rkesters/later",
"version": "1.0.3-1",
"description": "Determine later (or previous) occurrences of recurring schedules",
"keywords": [
"schedule",
"occurrences",
"recur",
"cron",
"typescript"
],
"author": "Robert Kesterson <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/rkesters/later.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.*"
],
"devDependencies": {
"@types/benchmark": "^1.0.33",
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.157",
"@types/luxon": "^1.24.1",
"@types/mocha": "^7.0.2",
"@types/moment": "^2.13.0",
"@types/terser-webpack-plugin": "^3.0.0",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@types/webpack": "^4.41.18",
"benchmark": "latest",
"chai": "^4.2.0",
"copyfiles": "^2.3.0",
"del-cli": "^3.0.1",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"license": "MIT",
"scripts": {
"test": "npx mocha -r ts-node/register 'test/**/*.ts' --reporter tap",
"clean": "npx del-cli dist",
"prebuild": "npm run clean",
"prebuildProd": "npm run clean",
"prepublish": "npm run buildProd",
"build": "TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" npx webpack --mode=development",
"buildProd": "WEBPACK_MODE='production' TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" npx webpack --mode=production",
"benchmark": "ts-node ./benchmark/constraint/val-bench.ts; ts-node ./benchmark/constraint/next-bench.ts"
},
"dependencies": {
"lodash": "^4.17.15",
"luxon": "^1.24.1",
"moment": "^2.27.0"
}
}