-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "chai-iterator",
"version": "1.1.4",
"description": "Chai assertions for iterable objects",
"main": "chai-iterator.js",
"typings": "chai-iterator.d.ts",
"scripts": {
"test:tsc": "tsc",
"test:eslint": "eslint chai-iterator.js",
"test:mocha": "mocha",
"test:watch": "mocha -w",
"test:cover": "istanbul cover _mocha",
"test:report": "npm run test:cover && open coverage/lcov-report/index.html",
"test": "npm run test:tsc && npm run test:eslint && npm run test:cover",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/mcmath/chai-iterator.git"
},
"keywords": [
"chai",
"chai-plugin",
"browser",
"iterator",
"iterable",
"iteration",
"generator",
"yield",
"es6",
"es2015",
"typescript"
],
"engines": {
"node": ">=4.0"
},
"author": "Akim McMath <akim.elijah.mcmath@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcmath/chai-iterator/issues"
},
"homepage": "https://github.com/mcmath/chai-iterator",
"peerDependencies": {
"chai": "3.x"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"chai": "^3.5.0",
"coffee-script": "^1.12.4",
"core-js": "^2.4.1",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"typescript": "^2.2.2"
}
}