-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 971 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
39
{
"name": "requestq",
"version": "0.9.0",
"description": "An intelligent queue for ajax requests in the browser.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"typescript": "^2.3.4"
},
"devDependencies": {
"@types/tape": "^4.2.30",
"browserify": "^14.4.0",
"tape": "^4.7.0",
"typescript-standard": "^0.3.30"
},
"testling": {
"files": "dist/tests.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"scripts": {
"test-browser": "node_modules/.bin/tsc && node_modules/.bin/browserify dist/tests.js > dist/tests.browser.js && open index.html",
"prepublish": "rm -rf dist/ && node_modules/.bin/tsc",
"lint": "node_modules/.bin/standard"
},
"files": [
"dist/"
],
"author": "haeric",
"license": "MIT"
}