-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nanoresource-promise",
"version": "3.2.0",
"description": "Promises based nanoresource",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./src/index.js"
},
"./emitter": {
"require": "./dist/emitter.cjs",
"import": "./src/emitter.js"
},
"./emittery": {
"require": "./dist/emittery.cjs",
"import": "./src/emittery.js"
},
"./emitter2": {
"require": "./dist/emitter2.cjs",
"import": "./src/emitter2.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"test": "uvu",
"posttest": "npm run lint",
"lint": "standard",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"emittery": "^1.0.0",
"eventemitter2": "^6.4.9",
"proc-nexttick": "^1.0.0"
},
"devDependencies": {
"standard": "^16.0.3",
"tsup": "^6.3.0",
"uvu": "^0.5.1"
},
"tsup": {
"entry": [
"./src/index.js",
"./src/emitter.js",
"./src/emittery.js",
"./src/emitter2.js"
],
"format": [
"cjs"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"standard": {
"env": [
"node",
"browser"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/nanoresource-promise.git"
},
"keywords": [
"nanoresource",
"promises"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/nanoresource-promise/issues"
},
"homepage": "https://github.com/geut/nanoresource-promise#readme"
}