-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "@covve/easy-vcard",
"version": "1.1.1",
"description": "Simple vcard formatter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Covve/easy-vcard.git"
},
"bugs": {
"url": "https://github.com/Covve/easy-vcard/issues",
"email": "[email protected]"
},
"scripts": {
"test": "jest",
"test:ci": "jest --ci --runInBand",
"test:watch": "jest --watch",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"lint": "eslint src/**/*.ts",
"export": "tsc examples/export.ts && node examples/export.js && rm examples/export.js"
},
"keywords": [
"vcard",
"vcf",
"v-card"
],
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.5.2",
"@types/lodash.clonedeep": "4.5.7",
"@types/lodash.isempty": "4.4.7",
"@types/node": "16.18.34",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "29.5.0",
"ts-jest": "29.1.0",
"tslint": "5.18.0",
"typescript": "4.9.5"
},
"dependencies": {
"lodash.clonedeep": "4.5.0",
"lodash.isempty": "4.4.0"
}
}