-
-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1015 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1015 Bytes
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
{
"name": "vcards",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "npm run gulp build",
"build:web": "npm run gulp buildWeb",
"serve:web": "node src/serve.js",
"dev:web": "npm run build:web && npm run serve:web",
"radicale": "npm run gulp radicale",
"gulp": "gulp --gulpfile src/gulpfile.js --cwd ./",
"test": "npx ava src/test.js"
},
"repository": "git@github.com:metowolf/vCards.git",
"author": "metowolf <i@i-meto.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"ava": "^5.3.1",
"del": "^7.1.0",
"fancy-log": "^2.0.0",
"globby": "^13.2.2",
"google-libphonenumber": "^3.2.43",
"gulp": "^5.0.1",
"gulp-concat": "^2.6.1",
"gulp-concat-folders": "^1.3.1",
"gulp-rename": "^2.1.0",
"gulp-zip": "^6.1.0",
"image-size": "^1.2.1",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"pinyin-pro": "^3.27.0",
"pretty-bytes": "^6.1.1",
"read-chunk": "^4.0.3",
"vcards-js": "^2.10.0"
}
}