-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 869 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
{
"name": "jquery-deferred-reporter",
"version": "2.0.0",
"description": "Report stack from jQuery.Deferred exceptions on the console",
"author": "Dave Methvin",
"license": "MIT",
"main": "dist/jquery-deferred-reporter.js",
"scripts": {
"lint": "eslint .",
"build": "mkdir -p dist && cp src/reporter.js dist/jquery-deferred-reporter.js",
"unit-tests": "qunit --require ./test/node-setup.js ./test/test.js",
"test": "npm run lint && npm run build && npm run unit-tests"
},
"repository": {
"type": "git",
"url": "https://github.com/dmethvin/jquery-deferred-reporter.git"
},
"devDependencies": {
"eslint": "8.34.0",
"eslint-config-jquery": "3.0.0",
"jquery": "3.6.3",
"jsdom": "21.1.0",
"qunit": "2.19.4"
},
"keywords": [
"jquery",
"deferred",
"reporter",
"error",
"console"
]
}