-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "chai-sorted",
"version": "0.2.0",
"description": "Chai JS Plugin for testing if an array has sorted values (strings, numbers, booleans). Very helpful when writing tests for features that implement Array.prototype.sort()",
"main": "index.js",
"scripts": {
"test": "yarn lint && yarn test:only",
"test:only": "mocha test/**/*",
"lint": "eslint lib/**/* test/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johntimothybailey/chai-sorted.git"
},
"keywords": [
"chai",
"chai-plugin",
"sort"
],
"author": "johntimothybailey",
"license": "MIT",
"engines": {
"node": ">=0.4"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.4",
"standard": "^11.0.1"
},
"bugs": {
"url": "https://github.com/johntimothybailey/chai-sorted/issues"
},
"homepage": "https://github.com/johntimothybailey/chai-sorted#readme",
"directories": {
"test": "test"
}
}