-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "@borodean/jsonp",
"version": "3.0.2",
"description": "The smallest possible JSONP implementation",
"license": "MIT",
"author": "Vadym Borodin <[email protected]> http://borodean.com",
"main": "callback.js",
"repository": "borodean/jsonp",
"scripts": {
"build": "rollup -c",
"lint": "xo --env=browser --env=mocha --global expect --global sinon --no-esnext --space",
"test": "karma start",
"test-local": "karma start --local"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"browserify": "^16.5.0",
"browserify-istanbul": "^3.0.1",
"chai": "*",
"core-js": "^3.6.4",
"karma": "^4.4.1",
"karma-browserify": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^2.0.1",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sinon": "^1.0.5",
"lodash": "^4.17.15",
"mocha": "^4.1.0",
"rollup": "^1.31.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.5.0",
"watchify": "^3.11.1",
"xo": "^0.26.0"
}
}