forked from Covve/easy-vcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "@covve/easy-vcard",
"version": "1.0.0",
"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:circleCI": "jest --ci --runInBand",
"test:watch": "jest --watch",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"lint": "tslint -p tsconfig.json",
"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": "25.1.3",
"@types/node": "10.14.2",
"@types/lodash.clonedeep": "4.5.6",
"@types/lodash.isempty": "4.4.6",
"jest": "25.1.0",
"ts-jest": "25.2.1",
"tslint": "5.18.0",
"typescript": "3.7.5"
},
"dependencies": {
"lodash.clonedeep": "4.5.0",
"lodash.isempty": "4.4.0"
}
}