-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 943 Bytes
/
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
{
"name": "@w0s/button-share",
"version": "2.1.0",
"description": "Share button",
"keywords": [
"share",
"web-share-api"
],
"homepage": "https://github.com/SaekiTominaga/frontend#readme",
"bugs": {
"url": "https://github.com/SaekiTominaga/frontend/issues"
},
"license": "MIT",
"author": "Saeki Tominaga",
"files": [
"dist"
],
"type": "module",
"main": "dist/ButtonShare.js",
"module": "dist/ButtonShare.js",
"types": "dist/ButtonShare.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/SaekiTominaga/frontend.git"
},
"scripts": {
"server": "http-server -o demo -c-1",
"prebuild": "rimraf dist/* -g",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src/**/*.ts __tests__/**/*.js",
"pretest": "npm run build",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest -c ../../jest.config.mjs --roots packages/button-share"
},
"publishConfig": {
"access": "public"
}
}