-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·64 lines (64 loc) · 1.52 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
{
"name": "micro-emitter",
"version": "1.2.7",
"description": "micro event emitter.",
"main": "lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run clean && npm test && npm run build",
"clean": "rm -rf lib",
"build": "tsc --declaration",
"watch": "tsc -w",
"lint": "eslint '{src,cli}/**/*.{ts,tsx,js,jsx,json}'",
"lint:fix": "eslint --fix '{src,cli}/**/*.{ts,tsx,js,jsx,json}'",
"format": "prettier --ignore-path .gitignore --config .prettierrc --write 'src/**/*'",
"test": "ava",
"start": "npm run build",
"check": "npx npm-check-updates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khirayama/micro-emitter.git"
},
"keywords": [
"eventemitter",
"emitter",
"event",
"events"
],
"author": "khirayama",
"license": "MIT",
"bugs": {
"url": "https://github.com/khirayama/micro-emitter/issues"
},
"homepage": "https://github.com/khirayama/micro-emitter#readme",
"devDependencies": {
"@types/sinon": "10.0.16",
"@typescript-eslint/eslint-plugin": "6.4.0",
"ava": "5.3.1",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"prettier": "3.0.2",
"sinon": "15.2.0",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"ava": {
"files": [
"src/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}