forked from unstubbable/universal-parse-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "universal-parse-url",
"version": "1.0.1",
"description": "A universal URL parser for Node.js and browser environments with a minimal footprint.",
"main": "index.js",
"browser": {
"./index.js": "./browser.js"
},
"scripts": {
"compile": "tsc -p .",
"pretest": "npm run compile",
"test:node": "mocha dist/index.spec.js",
"test:karma": "karma start",
"test:karma:sauce": "karma start karma.conf-sauce.js",
"test:ci": "npm run test:node && npm run test:karma:sauce",
"test": "npm run test:node && npm run test:karma",
"prerelease": "git checkout master; git pull origin master; npm t",
"release": "standard-version",
"split": "rollup -c > index.js && BROWSER=true rollup -c > browser.js",
"copy-typings": "cp dist/index.d.ts .",
"prepublish": "npm run compile && npm run split && npm run copy-typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KingHenne/universal-parse-url.git"
},
"keywords": [
"url",
"parse",
"parseurl",
"nodejs",
"browser",
"universal",
"isomorphic",
"typescript"
],
"author": "Hendrik Liebau",
"license": "MIT",
"bugs": {
"url": "https://github.com/KingHenne/universal-parse-url/issues"
},
"homepage": "https://github.com/KingHenne/universal-parse-url#readme",
"devDependencies": {
"@types/chai": "3.4.34",
"@types/mocha": "2.2.39",
"@types/node": "7.0.4",
"chai": "3.5.0",
"cz-conventional-changelog": "1.2.0",
"karma": "1.4.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-sauce-launcher": "1.1.0",
"karma-typescript": "2.1.7",
"mocha": "3.2.0",
"rollup": "0.41.4",
"rollup-plugin-replace": "1.1.1",
"standard-version": "4.0.0",
"ts-config": "0.6.0",
"tslint": "4.3.1",
"typescript": "2.1.6"
},
"files": [
"browser.js",
"index.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"types": "index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}