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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
| {
| "_args": [
| [
| "co-mocha@1.2.2",
| "E:\\ximenzi\\wms\\old\\api"
| ]
| ],
| "_development": true,
| "_from": "co-mocha@1.2.2",
| "_id": "co-mocha@1.2.2",
| "_inBundle": false,
| "_integrity": "sha512-ocdJRn3sxonOqpdjSU2VwTwWzjTSoatzsTqCWiC3eGvJFNs8ZNMlZwfgYolQCdfddMz4muiZl99KIV9gKoNvxg==",
| "_location": "/co-mocha",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "co-mocha@1.2.2",
| "name": "co-mocha",
| "escapedName": "co-mocha",
| "rawSpec": "1.2.2",
| "saveSpec": null,
| "fetchSpec": "1.2.2"
| },
| "_requiredBy": [
| "/egg-bin"
| ],
| "_resolved": "https://registry.npmjs.org/co-mocha/-/co-mocha-1.2.2.tgz",
| "_spec": "1.2.2",
| "_where": "E:\\ximenzi\\wms\\old\\api",
| "author": {
| "name": "Blake Embrey",
| "email": "hello@blakeembrey.com",
| "url": "http://blakeembrey.me"
| },
| "bugs": {
| "url": "https://github.com/blakeembrey/co-mocha/issues"
| },
| "dependencies": {
| "co": "^4.0.0",
| "is-generator": "^1.0.1"
| },
| "description": "Enable support for generators in Mocha tests",
| "devDependencies": {
| "browserify": "^14.0.0",
| "chai": "^4.0.1",
| "es6-promise": "^4.0.5",
| "istanbul": "^1.1.0-alpha.1",
| "mocha": "*",
| "regenerator": "^0.10.0",
| "standard": "^10.0.0",
| "testem": "^1.13.0",
| "traceur": "0.0.111"
| },
| "files": [
| "co-mocha.js",
| "lib/",
| "LICENSE"
| ],
| "homepage": "https://github.com/blakeembrey/co-mocha",
| "keywords": [
| "co",
| "mocha",
| "harmony",
| "generators"
| ],
| "license": "MIT",
| "main": "lib/co-mocha.js",
| "name": "co-mocha",
| "peerDependencies": {
| "mocha": ">=1.18 <6"
| },
| "repository": {
| "type": "git",
| "url": "git://github.com/blakeembrey/co-mocha.git"
| },
| "scripts": {
| "build": "browserify lib/co-mocha.js -s co-mocha -o co-mocha.js",
| "lint": "standard",
| "test": "mocha -V && npm run lint && npm run build && npm run test-cov",
| "test-cov": "testem ci -l Firefox,Node",
| "test-spec": "mocha --harmony -R spec --require lib/co-mocha.js --bail"
| },
| "standard": {
| "ignore": [
| "coverage/**",
| "node_modules/**",
| "bower_components/**",
| "co-mocha.js"
| ]
| },
| "version": "1.2.2"
| }
|
|