-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 760 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 760 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
{
"name": "yieldcss",
"version": "0.1.0",
"description": "Generate CSS on the fly",
"source": "src/index.ts",
"main": "dist/yieldcss.js",
"module": "dist/yieldcss.modern.js",
"unpkg": "dist/yieldcss.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"
},
"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",
"microbundle": "^0.12.4",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {}
}