initial commit

This commit is contained in:
Vladimir Enchev
2015-07-10 10:32:43 +03:00
parent 782c39050f
commit 44e6014d3c
7 changed files with 1183 additions and 0 deletions

28
fetch/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "fetch-standard",
"author": "Jxck",
"license": "MIT",
"version": "0.0.0",
"description": "implementaion of https://fetch.spec.whatwg.org/",
"homepage": "https://github.com/Jxck/fetch",
"bugs": {
"url": "https://github.com/Jxck/fetch/issues"
},
"keywords": [
"fetch",
"whatwg"
],
"repository": {
"type": "git",
"url": "https://github.com/Jxck/fetch"
},
"main": "fetch.ts",
"scripts": {
"clean": "rm *.js",
"build": "tsc fetch.ts --target ES5",
"test": "npm run build && node fetch.js"
},
"devDependencies": {
"typescript": "^1.4.1"
}
}