-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1004 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
{
"name": "@mr/emails-input",
"private": true,
"version": "1.0.0",
"description": "Emails input component",
"source": "index.ts",
"main": "dist/emails-input.js",
"exports": "./dist/emails-input.modern.js",
"module": "dist/emails-input.module.js",
"unpkg": "dist/emails-input.umd.js",
"scripts": {
"build": "microbundle --name=mrEmailsInput",
"start": "microbundle --name=mrEmailsInput watch & http-server -c-1",
"prepublish": "npm run build",
"docs": "typedoc --excludePrivate --out temp-docs --plugin typedoc-plugin-markdown ./src/emails-input-api.ts && concat-md --decrease-title-levels temp-docs && rm -rf temp-docs"
},
"author": "Mihail Tratsiuk",
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^7.29.6",
"concat-md": "^0.3.5",
"http-server": "^0.12.3",
"microbundle": "^0.13.0",
"typedoc": "^0.20.26",
"typedoc-plugin-markdown": "^3.5.0"
}
}