-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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": "chai-snapshot-matcher",
"version": "2.0.3",
"description": "A Snapshot testing library designed for Mocha and Chai users",
"main": "./src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "nyc --reporter=lcov mocha 'test/**/*.test.js' --timeout 5000",
"unit-tests": "nyc --reporter=lcov mocha 'test/unit/*.test.js' --timeout 5000",
"smoke-tests": "nyc --reporter=lcov mocha 'test/smokes/*.test.js' --timeout 5000",
"coverage": "bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r ./coverage/lcov.info"
},
"keywords": [
"chai",
"mocha",
"snapshot",
"test",
"regression",
"matcher"
],
"author": "Tiago Lameiras <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tlameiras/chai-snapshot.git"
},
"bugs": {
"url": "https://github.com/tlameiras/chai-snapshot/issues"
},
"homepage": "https://github.com/tlameiras/chai-snapshot#readme",
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-prettier": "^3.1.4",
"install": "^0.13.0",
"mocha": "^7.1.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2"
},
"dependencies": {
"chai": "^4.2.0",
"lodash": "^4.17.20"
}
}