-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"version": "1.1.0",
"license": "MIT",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"typings": "dist/main/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsc --watch",
"build": "npm run build:main && npm run build:module",
"build:main": "tsc --module commonjs --outDir ./dist/main",
"build:module": "tsc --module esnext --outDir ./dist/module",
"test": "npm run build && NODE_ENV=development jest",
"prepare": "NODE_ENV=production npm run build"
},
"name": "vcard-xml",
"author": "Gabriel Unterholzer",
"repository": {
"type": "git",
"url": "https://github.com/dec112/vcard-xml-javascript"
},
"devDependencies": {
"@types/find-root": "^1.1.2",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@xmldom/xmldom": "^0.8.7",
"find-root": "^1.1.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@xmldom/xmldom": "^0.8.7"
}
}