-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 816 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
{
"name": "sprinkle-dom",
"version": "0.0.3",
"description": "It's not a JavaScript framework, I promise.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Marc Gebeily",
"license": "MIT",
"dependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@types/jest": "^26.0.22",
"@types/testing-library__jest-dom": "^5.9.5",
"fletch-state": "^1.0.4"
},
"devDependencies": {
"@testing-library/dom": "^7.30.4",
"esbuild": "^0.11.12",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"scripts": {
"start": "esbuild index.ts --format=esm --bundle --outfile=dist/index.js && esbuild script.ts --format=iife --bundle --outfile=dist/main.js",
"watch": "watchexec -i dist yarn start",
"test": "jest",
"prepare": "tsc && yarn start"
}
}