-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1019 Bytes
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": "sinon-jquery",
"version": "1.0.3",
"description": "Sinon matcher for matching jQuery collections",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"mocha": "mochify ./test/*.test.js --reporter spec",
"test": "npm run lint && npm run mocha"
},
"keywords": [
"sinon",
"jquery",
"matcher",
"chai"
],
"author": "Dan Phillimore <daniel.phillimore@jadu.co.uk>",
"repository": {
"type": "git",
"url": "https://github.com/jadu/sinon-jquery"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.0.0",
"jquery": "^3.4.1",
"jshint": "^2.10.3",
"mochify": "^6.6.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.14.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.7.6",
"babelify": "^10.0.0",
"lodash": "^4.17.15"
}
}