-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 831 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 831 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
{
"name": "yieldmarkup",
"version": "0.2.0",
"description": "Components with Generator Functions",
"source": "src/index.ts",
"main": "dist/yieldmarkup.js",
"module": "dist/yieldmarkup.modern.js",
"unpkg": "dist/yieldmarkup.umd.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepack": "jest && npm run build",
"dev": "microbundle watch",
"build": "microbundle --format modern,cjs,umd",
"test": "jest --watch",
"format": "prettier --write src/*.ts"
},
"author": "Patrick Smith",
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^7.29.1",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/user-event": "^12.6.0",
"jest": "^26.6.3",
"linkedom": "^0.5.5",
"microbundle": "^0.13.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}