39 lines
1000 B
JSON
39 lines
1000 B
JSON
{
|
|
"name": "eventlet",
|
|
"version": "0.1.0",
|
|
"description": "A minimal typed event library",
|
|
"main": "built/index.js",
|
|
"types": "built/index.d.ts",
|
|
"sideEffects": false,
|
|
"keywords": [
|
|
"eventlet",
|
|
"events",
|
|
"emitters",
|
|
"listeners"
|
|
],
|
|
"author": "Matt Rakow",
|
|
"license": "Unlicense",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
|
"@typescript-eslint/parser": "^7.7.1",
|
|
"eslint": "^8.57.0",
|
|
"jest": "^29.7.0",
|
|
"typescript": "^5.4.5",
|
|
"eslint-config-shared": "0.0.0",
|
|
"tsconfig-shared": "0.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ChumpChief/eventlet.git",
|
|
"directory": "packages/eventlet"
|
|
},
|
|
"homepage": "https://github.com/ChumpChief/eventlet#readme",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf built",
|
|
"lint": "eslint src",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest built/.*.test.js"
|
|
}
|
|
} |