forked from okikio/native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.19 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
{
"name": "@okikio/emitter",
"version": "2.1.7",
"type": "module",
"sideEffects": false,
"description": "A small Event Emitter written in typescript with performance and ease of use in mind.",
"publishConfig": {
"access": "public",
"main": "lib/api.cjs.js",
"types": "@types/api.d.ts",
"browser": "lib/api.es.js",
"module": "lib/api.es.js",
"exports": {
".": {
"require": "./lib/api.cjs.js",
"import": "./lib/api.es.js",
"default": "./lib/api.es.js"
},
"./lib/*": "./lib/*.js"
}
},
"main": "src/api.ts",
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"src",
"@types"
],
"scripts": {
"build": "del-cli lib/ && node ./build",
"watch": "del-cli lib/ && node ./build --watch",
"dts": "del-cli @types/ && tsc --project dts.tsconfig.json",
"test": "jest --maxWorkers=1",
"test-dev": "jest --maxWorkers=1 --watch --verbose false",
"pre-release": "npm run build && npm test && npm run dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okikio/native.git"
},
"keywords": [
"event",
"emitter",
"small",
"light-weight",
"ts",
"typescript",
"api"
],
"author": {
"name": "Okiki Ojo",
"email": "[email protected]",
"url": "https://okikio.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/okikio/native/issues"
},
"homepage": "https://github.com/okikio/native/tree/master/packages/emitter#readme",
"dependencies": {
"@okikio/manager": "workspace:*"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"del-cli": "^4.0.0",
"esbuild": "^0.12.12",
"esbuild-jest": "^0.5.0",
"gzip-size": "^6.0.0",
"jest": "^27.0.6",
"jest-chain": "^1.1.5",
"pnpm": "^6.9.1",
"pretty-bytes": "^5.6.0",
"typescript": "~4.3.4",
"ultra-runner": "^3.10.5"
},
"gitHead": "ad422076cdb57d570426f786886129d5bca2f90f"
}