-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "calcdate",
"version": "2.0.3",
"description": "Evalate a date expression calc`now + 3 days`)!",
"main": "dist/datecalculator.js",
"scripts": {
"build": "webpack",
"test": "env TZ=UTC jest",
"build:all": "yarn build:browser && yarn build:node",
"build:browser": "webpack && cp dist/datecalculator.js examples/browser",
"build:node": "webpack && cp dist/datecalculator.js examples/node/ && node examples/node/example.js"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Zyclotrop-j/DateCalculator.git"
},
"keywords": [
"date",
"js",
"date-fns",
"moment",
"luxon",
"calculator",
"peg",
"date-util"
],
"author": "Jannes Mingram ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zyclotrop-j/DateCalculator/issues"
},
"homepage": "https://github.com/Zyclotrop-j/DateCalculator#readme",
"peerDependencies": {
"date-fns": "^2.0.1",
"luxon": "^2.5.2",
"moment": "^2.24.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.6.1",
"codegen.macro": "^3.0.0",
"cross-env": "^5.2.1",
"date-fns": "^2.0.1",
"eslint": "^6.3.0",
"eslint-loader": "^3.0.0",
"jest": "^24.9.0",
"luxon": "^2.5.2",
"moment": "^2.24.0",
"pegjs": "^0.10.0",
"preval.macro": "^3.0.0",
"set-tz": "^0.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.7"
}
}