-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "chai-immutable",
"version": "2.1.0",
"description": "Chai assertions for Facebook's Immutable library for JavaScript collections",
"main": "chai-immutable.js",
"files": [
"chai-immutable.js"
],
"scripts": {
"format": "run-s -c \"lint:eslint --fix\" \"lint:prettier --write\"",
"lint:eslint": "eslint --ignore-path .gitignore . --report-unused-disable-directives",
"lint:prettier": "prettier --list-different .",
"test": "run-s -c test:* lint:* eslint-check:*",
"test:readme": "mocha --require fulky/md-compiler README.md",
"test:mocha": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"eslint-check:main": "eslint --print-config chai-immutable.js | eslint-config-prettier-check",
"eslint-check:test": "eslint --print-config test/test.js | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "https://github.com/astorije/chai-immutable.git"
},
"keywords": [
"chai",
"chai-plugin",
"browser",
"test",
"assertions",
"immutable"
],
"author": {
"name": "Jérémie Astori",
"url": "https://jeremie.astori.fr"
},
"license": "MIT",
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/astorije/chai-immutable/issues"
},
"homepage": "https://github.com/astorije/chai-immutable",
"peerDependencies": {
"chai": "^4.0.0",
"immutable": "^3.0.0"
},
"devDependencies": {
"chai": "4.3.4",
"coveralls": "3.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-chai-expect": "2.2.0",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-mocha": "6.3.0",
"fulky": "0.2.0",
"immutable": "3.8.2",
"mocha": "6.2.3",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.2.1"
}
}