-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "url-standard",
"description": "implementaion of URL at WHATWG Living Standard https://url.spec.whatwg.org/",
"version": "0.0.0",
"author": "Jxck",
"bugs": {
"url": "https://github.com/Jxck/URL/issues"
},
"dependencies": {
"obtain-unicode": "*",
"urlsearchparams": "*",
"utf8-encoding": "0.1.x"
},
"devDependencies": {
"bower": "^1.4.1",
"tslint": "^2.2.0-beta",
"typescript": "^1.5.0-beta"
},
"files": [
"test",
"types",
".gitignore",
"README.md",
"package.json",
"url.js",
"url.js.map",
"url.ts"
],
"homepage": "https://github.com/Jxck/URL",
"keywords": [
"url",
"urlsearchparams",
"whatwg",
"w3c"
],
"license": "MIT",
"main": "url.js",
"repository": {
"type": "git",
"url": "https://github.com/Jxck/URL"
},
"scripts": {
"bower": "bower install",
"clean": "\\rm -f *.js npm-debug.log",
"prepublish": "npm run tsc",
"test": "npm run tsc && node test/index.js && echo open test/index.html in your browser",
"tsc": "tsc url.ts --target ES5 --module commonjs --noImplicitAny --sourceMap",
"type": "cp node_modules/utf8-encoding/utf8-encoding.d.ts types/ && cp node_modules/urlsearchparams/urlsearchparams.d.ts types/"
}
}