-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
95 lines (95 loc) · 3.02 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
90
91
92
93
94
95
{
"name": "vcard-creator",
"version": "0.7.1",
"description": "A JavaScript vCard creator library for both node.js and the web",
"main": "./dist/vcard-creator.js",
"exports": {
".": "./dist/vcard-creator.js"
},
"types": "./dist/vcard-creator.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"build:types": "tsc -p tsconfig.declaration.json && mv dist/index.d.ts dist/vcard-creator.d.ts",
"build": "NODE_ENV=production webpack --mode production",
"clean": "rm -rf ./dist/ ./node_modules/.cache/ *.vcf *.ics",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"prepare": "husky",
"pretty:fix": "prettier --write .",
"pretty": "prettier --check .",
"test:functional": "(./test-functional/test-vcard.js | tee vcard.vcf) && (./test-functional/test-vcalendar.js 2>/dev/null | tee vcard.ics)",
"test:unit": "jest",
"test:web-build": "NODE_ENV=development webpack --mode development && open ./test-functional/test-build.html",
"test:web-export": "open ./test-functional/test-export.html",
"type-check:watch": "pnpm type-check --watch",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaocarmo/vcard-creator.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"tag": "latest"
},
"keywords": [
"vcard",
"node",
"browser"
],
"author": "Joao Carmo",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaocarmo/vcard-creator/issues"
},
"homepage": "https://github.com/joaocarmo/vcard-creator#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.6",
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"babel-core": "^6.26.3",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.38.1",
"eslint": "^9.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-date-mock": "^1.0.10",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/plugin-transform-class-properties": "^7.25.4"
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}