-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "vcards-ts",
"version": "1.0.7",
"main": "dist/umd/vcards-ts.js",
"description": "TypeScript vCard integration",
"repository": {
"type": "git",
"url": "https://github.com/digirati-labs/vCards-ts.git"
},
"entry": "lib/index.ts",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Pawel Kaczynski <[email protected]>",
"license": "MIT",
"scripts": {
"build": "fesk-build --cjs --umd && tsc -p ./ --emitDeclarationOnly",
"start": "fesk-start --cjs --noServer",
"test": "jest",
"build-types": "tsc -p ./ --emitDeclarationOnly",
"prepare": "NODE_ENV=production fesk-build --cjs --umd && tsc -p ./ --emitDeclarationOnly"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@fesk/babel-config": "^1.2.2",
"@fesk/scripts": "^1.2.1",
"@types/jest": "^24.0.17",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"files": [
"dist",
"lib"
],
"fesk": {
"typescript": true
}
}