forked from dmethvin/jquery-deferred-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 802 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
{
"name": "jquery-deferred-reporter",
"version": "1.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 . && jscs src",
"test": "node-qunit-phantomjs ./test/index.html --verbose",
"build": "cp ./src/reporter.js ./dist/jquery-deferred-reporter.js",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/dmethvin/jquery-deferred-reporter.git"
},
"devDependencies": {
"eslint": "1.10.3",
"node-qunit-phantomjs": "1.3.0",
"qunitjs": "1.20.0"
},
"keywords": [
"jquery",
"deferred",
"reporter",
"error",
"console"
]
}