-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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
{
"name": "unexpected-magicpen",
"version": "3.0.0",
"description": "MagicPen plugin for the Unexpected assertion library",
"main": "lib/unexpected-magicpen.js",
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"prepublishOnly": "rollup -c",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"files": [
"unexpected-magicpen.esm.js",
"unexpected-magicpen.min.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unexpectedjs/unexpected-magicpen.git"
},
"keywords": [
"Unexpected",
"magicpen",
"assertion",
"style"
],
"author": "Andreas Lind <andreaslindpetersen@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-magicpen/issues"
},
"homepage": "https://github.com/unexpectedjs/unexpected-magicpen#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^1.7.0",
"prettier": "~2.5.0",
"rollup": "^2.0.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"unexpected": "^12.0.0"
},
"dependencies": {}
}