forked from jkbrzt/rrule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "rrule",
"version": "2.6.2",
"description": "JavaScript library for working with recurrence rules for calendar dates.",
"homepage": "http://jakubroztocil.github.io/rrule/",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"dates",
"recurrences",
"calendar",
"icalendar",
"rfc"
],
"author": "Jakub Roztocil, Lars Schöning, and David Golightly",
"main": "dist/es5/rrule.js",
"module": "dist/esm/src/index.js",
"typings": "dist/esm/src/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/jakubroztocil/rrule.git"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"scripts": {
"build": "yarn lint && tsc && webpack && tsc dist/esm/**/*.d.ts",
"lint": "yarn tslint --project . --fix --config tslint.json",
"test": "TS_NODE_PROJECT=tsconfig.test.json mocha **/*.test.ts",
"test-ci": "TS_NODE_PROJECT=tsconfig.test.json nyc mocha **/*.test.ts"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"devDependencies": {
"@types/assert": "^0.0.31",
"@types/chai": "^4.1.4",
"@types/jquery": "^3.3.29",
"@types/luxon": "^1.2.2",
"@types/mocha": "^5.2.5",
"@types/mockdate": "^2.0.0",
"@types/node": "^10.12.18",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.5.2",
"coverage": "^0.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.13",
"jquery": "^3.3.1",
"mocha": "^5.2.0",
"mockdate": "^2.0.2",
"nyc": "^12.0.2",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.8",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.1",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"standard": {
"ignore": [
"demo"
]
},
"files": [
"dist",
"README.md"
],
"optionalDependencies": {
"luxon": "^1.3.3"
},
"peerDependencies": {},
"dependencies": {
"tslib": "^1.9.0"
}
}