-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.25 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
{
"name": "zsv",
"version": "0.0.0-development",
"description": "Parse Zoom Meeting CSVs with Ease",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"coverage:check": "nyc check-coverage",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage:post": "codecov",
"coverage:test": "nyc mocha",
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"precommit": "npm run coverage:test && npm run coverage:check",
"prepush": "npm run coverage:test",
"publish": "npx semantic-release",
"nyc": "nyc",
"semantic-release": "semantic-release",
"test": "mocha"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.1.0",
"codecov": "^3.0.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.1",
"mocha": "^8.1.3",
"nyc": "^15.0.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.8",
"source-map-support": "^0.5.19",
"travis-deploy-once": "^5.0.11",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jfrazx/zoom-meeting-csv-parser.git"
},
"keywords": [
"zoom",
"meeting",
"csv",
"parse",
"webinar"
],
"author": "jfrazx",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfrazx/zoom-meeting-csv-parser/issues"
},
"homepage": "https://github.com/jfrazx/zoom-meeting-csv-parser#readme",
"dependencies": {
"@status/defaults": "^1.2.1"
},
"mocha": {
"recursive": true,
"spec": "spec/*.ts",
"reporter": "spec",
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
]
}
}