-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.24 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
{
"name": "unexpected-snapshot",
"version": "2.1.0",
"description": "Add inline snapshotting powers to the Unexpected assertion library",
"main": "lib/unexpected-snapshot.js",
"browser": "unexpected-snapshot-browser.js",
"files": [
"lib",
"unexpected-snapshot-browser.js",
"unexpected-snapshot-browser.js.map"
],
"scripts": {
"build": "./build.sh",
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"test": "mocha",
"test-browser": "npm run build && karma start --single-run --browsers ${BROWSER:-ChromeHeadless}",
"test-browser-ie11": "BROWSER=ie11 npm run test-browser",
"test-headless": "npm run test-browser",
"coverage": "nyc --reporter=lcov --reporter=text --all -- mocha && echo google-chrome coverage/lcov-report/index.html",
"prepublishOnly": "npm run build",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"author": "Andreas Lind <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"@gustavnikolaj/string-utils": "^2.0.0",
"bluebird": "^3.5.0",
"byline": "^5.0.0",
"detect-indent": "^6.0.0",
"eslint": "8.57.0",
"is-node": "^1.0.2",
"lodash.camelcase": "^4.3.0",
"memoizesync": "^1.1.1",
"pretty-maybe": "^1.0.0"
},
"devDependencies": {
"buble": "^0.20.0",
"escodegen": "^2.0.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"espree": "^9.0.0",
"karma": "^6.1.2",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^2.0.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^2.0.0",
"prettier": "~3.2.4",
"rollup": "^2.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^7.0.0",
"unassessed": "^0.2.1",
"unexpected": "^13.0.0"
},
"peerDependencies": {
"unexpected": "^10.27.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"nyc": {
"include": [
"lib/**"
]
}
}