-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "unexpected-map",
"version": "3.1.0",
"description": "Add support to Unexpected for testing Map instances",
"main": "lib/unexpectedMap.js",
"files": [
"lib"
],
"scripts": {
"coverage": "nyc --reporter lcov --reporter text mocha",
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"keywords": [
"test",
"assertion",
"Unexpected",
"Map"
],
"author": "Alex J Burke <alex@alexjeffburke.com>",
"repository": {
"type": "git",
"url": "git://github.com/unexpectedjs/unexpected-map.git"
},
"license": "MIT",
"peerDependencies": {
"unexpected": "^10.40.2 || ^11.0.0 || ^12.0.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.1.3",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.7.0",
"prettier": "~2.5.1",
"unexpected": "^12.0.0",
"unexpected-snapshot": "^1.1.0"
},
"dependencies": {
"eslint-plugin-n": "^15.1.0"
}
}