forked from balazsbotond/urlcat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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": "urlcat",
"version": "2.0.3",
"description": "A library for concatenating URL's.",
"repository": {
"type": "git",
"url": "https://github.com/balazsbotond/urlcat.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist",
"clean:test": "shx rm -rf dist-test",
"prebuild": "npm run clean",
"build": "tsc -p .",
"prebuild:test": "npm run clean:test",
"build:test": "tsc -p ./tsconfig-test.json",
"pretest": "npm run build:test",
"test": "nyc --reporter html --reporter text mocha --timeout 10000 --exit 'dist-test/test/**/*.js'",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"coverage": "nyc report --reporter text-lcov | coveralls",
"prepublish": "npm test && npm run build"
},
"keywords": [
"url",
"uri",
"build",
"builder",
"concat",
"concatenate"
],
"author": "Botond Balazs",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/mocha": "8.0.3",
"chai": "4.2.0",
"coveralls": "3.1.0",
"mocha": "8.1.3",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"shx": "0.3.2",
"tslint": "6.1.3",
"typescript": "4.0.3"
}
}