-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
{
"name": "unsubscriber",
"version": "2.2.0",
"description": "How to easy collect unsubscribe functions from several sources",
"types": "src/index.d.ts",
"main": "dist/unsubscriber.js",
"module": "dist/unsubscriber.module.js",
"umd:main": "dist/unsubscriber.umd.js",
"source": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "jest",
"clean": "rm -rf dist",
"dev": "microbundle watch --raw --format cjs",
"build": "yarn clean && microbundle build --raw --target web --generateTypes false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/re-js/unsubscriber.git"
},
"keywords": [
"unsubscribe",
"detach",
"unsubscriber",
"un"
],
"author": "Slava Bereza <mail@betula.co> (http://betula.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/re-js/unsubscriber/issues"
},
"homepage": "https://github.com/re-js/unsubscriber#readme",
"devDependencies": {
"@babel/preset-env": "7.23.5",
"@babel/preset-typescript": "7.23.3",
"@types/jest": "29.5.10",
"jest": "29.7.0",
"microbundle": "0.15.1",
"typescript": "5.3.2"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"browser": "./dist/unsubscriber.module.js",
"umd": "./dist/unsubscriber.umd.js",
"import": "./dist/unsubscriber.mjs",
"require": "./dist/unsubscriber.js"
}
}
}