-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 872 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
28
29
30
31
32
33
34
{
"name": "@guguponce/streak-counter",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/guguponce/streak-counter"
},
"type": "module",
"types": "./dist/index.d.ts",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"author": "Augusto Ponce <[email protected]>",
"license": "MIT",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/jsdom": "^20.0.1",
"jest": "^29.4.1",
"jsdom": "^21.1.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}