-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
{
"name": "unexpected-require",
"version": "2.1.0",
"description": "Easily mock out required modules using Unexpected and mock-require",
"main": "lib/unexpected-require.js",
"scripts": {
"lint": "eslint .",
"test": "mocha test/**/*.js documentation/**/*.md && npm run lint",
"travis": "npm test && npm run coverage && (<coverage/lcov.info coveralls || true)",
"coverage": "NODE_ENV=development istanbul cover _mocha -- --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"generate-site": "generate-site --require ./bootstrap-unexpected-markdown.js",
"update-examples": "generate-site --require ./bootstrap-unexpected-markdown.js --update-examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unexpectedjs/unexpected-require.git"
},
"keywords": [
"test",
"assertion",
"Unexpected",
"mock-require",
"require"
],
"author": "Joel Mukuthu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unexpectedjs/unexpected-require/issues"
},
"homepage": "https://unexpected.js.org/unexpected-require",
"devDependencies": {
"coveralls": "2.11.8",
"eslint": "2.13.1",
"eslint-config-onelint": "1.2.0",
"istanbul": "0.4.2",
"mocha": "2.4.5",
"sinon": "1.17.3",
"unexpected": "^11.0.0-4",
"unexpected-documentation-site-generator": "^4.0.0",
"unexpected-markdown": "1.3.1",
"unexpected-sinon": "10.1.1"
},
"peerDependencies": {
"unexpected": "^10.11.1 || ^11.0.0-4"
},
"dependencies": {
"mock-require": "1.2.1"
}
}