-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 KB
/
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
35
36
37
38
39
40
41
42
43
{
"name": "use-streak",
"version": "1.0.4",
"author": "Joe Previte",
"homepage": "https://github.com/jsjoeio/use-streak",
"repository": {
"type": "git",
"url": "https://github.com/jsjoeio/use-streak"
},
"description": "a streak counter to track your streak in days (similar to Duolingo)",
"keywords": [
"typescript",
"browser",
"streak",
"duolingo"
],
"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",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jsdom": "16.2.13",
"date-fns": "2.25.0",
"jest": "^27.2.5",
"jsdom": "17.0.0",
"microbundle": "^0.14.1",
"ts-jest": "^27.0.7",
"typescript": "4.4.2"
},
"license": "MIT"
}