-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.76 KB
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": "@ymchun/ics",
"version": "0.0.1-alpha.18",
"description": "A ics file parser and generator based on RFC-5545",
"homepage": "github:ymchun/ics",
"author": "Jean M.C.",
"license": "MIT",
"main": "index.js",
"private": false,
"scripts": {
"build": "rm -rf dist && ttsc && npm run compile-nearley-prod",
"compile-nearley-prod": "mkdir -p ./dist/nearley/ && nearleyc ./src/nearley/grammar.ne -o ./dist/nearley/grammar.js",
"compile-nearley": "nearleyc ./src/nearley/grammar.ne -o ./src/nearley/grammar.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src/**/*.ts",
"snyk-protect": "snyk protect",
"snyk-test": "snyk test",
"spell:check": "cspell 'src/**/*.ts'",
"start": "ts-node -r tsconfig-paths/register --files src/dev.ts",
"test": "jest --no-cache --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymchun/ics.git"
},
"keywords": [
"ics",
"parser",
"generator"
],
"bugs": {
"url": "https://github.com/ymchun/ics/issues"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/nearley": "^2.11.2",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"coveralls": "^3.1.1",
"cspell": "^5.13.1",
"eslint": "^8.3.0",
"jest": "^27.4.0",
"prettier": "^2.5.0",
"snyk": "^1.777.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"ttypescript": "^1.5.13",
"typescript": "^4.5.2",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"date-fns": "^2.26.0",
"date-fns-tz": "^1.1.6",
"nearley": "^2.20.1",
"rrule": "2.6.8",
"tslib": "^2.3.1"
}
}