-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 Bytes
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
{
"name": "chai-almost",
"version": "1.0.1",
"description": "Extends chai with assertions that allow for floating point rounding errors",
"main": "index.js",
"repository": "https://github.com/nmuldavin/chai-almost.git",
"author": "Noah Muldavin <nmuldavin@gmail.com>",
"license": "MIT",
"keywords": [
"tests",
"testing",
"chai",
"number-equality",
"assertions",
"assertion",
"chai-plugin",
"rounding-errors",
"approximation",
"testing-libraries",
"deep-equality"
],
"scripts": {
"test": "mocha test",
"test:watch": "mocha test -w"
},
"dependencies": {
"deep-eql": "^2.0.2",
"type-detect": "^4.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.3.0"
}
}