-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.28 KB
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": "@dapphero/dapphero-dom",
"version": "0.4.1",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/dapphero-dom.js",
"module": "dist/dapphero-dom.mjs",
"unpkg": "dist/dapphero-dom.umd.js",
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"lodash.isempty": "^4.4.0",
"lodash.lowerfirst": "^4.3.1",
"sanitize-html": "^1.23.0",
"shortid": "^2.2.15"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@types/jest": "^25.2.1",
"jest": "^26.0.1",
"microbundle": "^0.12.0-next.8",
"np": "^6.2.3",
"parcel-bundler": "^1.12.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"scripts": {
"dev": "./start.sh",
"test": "jest",
"test:watch": "jest --watchAll",
"publish:npm": "np",
"publish:now": "now ./dist/dapphero-dom.umd.js",
"build": "rm -rf dist/* && microbundle --name dappHeroDom --tsconfig tsconfig.json --external lodash.isempty=isEmpty,sanitize-html=sanitizeHtml,lodash.lowerfirst=lowerFirst,shortid=shortid",
"build:watch": "microbundle watch --no-compress --name dappHeroDom --tsconfig tsconfig.json --external lodash.isempty=isEmpty,sanitize-html=sanitizeHtml,lodash.lowerfirst=lowerFirst,shortid=shortid"
},
"browserslist": [
"last 1 Chrome version"
]
}