-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.87 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
{
"name": "unexpected-eventemitter",
"version": "2.4.0",
"description": "EventEmitter assertions for Unexpected",
"homepage": "https://github.com/boneskull/unexpected-eventemitter",
"author": {
"name": "Christopher Hiller",
"email": "[email protected]",
"url": "https://boneskull.com"
},
"files": [
"dist",
"src"
],
"keywords": [
"unexpected",
"assertion",
"assert",
"event",
"events",
"eventemitter",
"ee",
"test",
"tdd",
"bdd"
],
"lint-staged": {
"*.js": "eslint --fix",
"*.{json,yml,md}": "prettier --write"
},
"devDependencies": {
"esbuild": "0.16.17",
"esbuild-plugin-version-injector": "1.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "3.6.0",
"eslint-config-semistandard": "13.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"mocha": "10.2.0",
"prettier": "2.8.8",
"sinon": "15.2.0",
"unexpected": "13.2.1"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"unexpected": "^10 || ^11 || ^12 || ^13"
},
"license": "Apache-2.0",
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint .",
"pretest": "npm run lint",
"lint-staged": "lint-staged",
"test": "mocha",
"prepare": "husky install && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/boneskull/unexpected-eventemitter.git"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"main": "dist/unexpected-eventemitter.cjs.js",
"browser": "dist/unexpected-eventemitter.js"
}