-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 931 Bytes
/
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
{
"name": "sinonquire",
"version": "1.2.3",
"description": "Automatically stubs CommonJS modules returned by require() using Sinon.JS",
"main": "lib/index.js",
"scripts": {
"eslint": "eslint .",
"test": "mocha --recursive --require ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rstuven/sinonquire.git"
},
"keywords": [
"sinon",
"require",
"jest"
],
"author": "Ricardo Stuven <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rstuven/sinonquire/issues"
},
"homepage": "https://github.com/rstuven/sinonquire#readme",
"devDependencies": {
"babel-eslint": "^4.1.3",
"chai": "^3.4.0",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.0",
"mocha": "^2.3.3",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"sinon": "^1.17.2"
},
"dependencies": {}
}