-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 853 Bytes
/
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
{
"name": "chai-any-eql",
"version": "1.0.1",
"description": "",
"main": "src/any-eql.js",
"scripts": {
"test": "nyc --exclude tests mocha --reporter dot tests",
"lint": "eslint src tests",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardo-matos/chai-any-eql.git"
},
"keywords": [
"chai",
"tdd",
"tests",
"any",
"plugin"
],
"author": "Eduardo Matos",
"license": "MIT",
"dependencies": {
"chai": "4.1.2",
"deep-eql": "3.0.1"
},
"devDependencies": {
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"mocha": "4.0.1",
"nyc": "14.1.1",
"sinon": "4.1.2"
}
}