-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "@letscooee/url-builder",
"version": "0.0.5",
"description": "Utility class to provide some utility for dealing with URLs",
"main": "./dist/url-builder.js",
"types": "./dist/url-builder.d.ts",
"scripts": {
"build": "tsc",
"preversion": "git add CHANGELOG.md",
"version": "npm run build && npm publish --access public",
"postversion": "git push && git push --tags",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/letscooee/url-builder.git"
},
"keywords": [
"typescript",
"javascript",
"browser",
"angular",
"url"
],
"author": "Shashank Agrawal",
"license": "MIT",
"bugs": {
"url": "https://github.com/letscooee/url-builder/issues"
},
"homepage": "https://github.com/letscooee/url-builder#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}