-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
{
"name": "@azure-tools/uri",
"version": "3.1.1",
"description": "Common URI handling code.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"engines": {
"node": ">=10.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/perks.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"watch": "tsc -p ./tsconfig.build.json --watch",
"lint:fix": "eslint ./src --fix --ext .ts",
"lint": "eslint ./src --ext .ts --max-warnings=0",
"prepare": "npm run build",
"test": "jest --watchAll --coverage=false",
"test:ci": "jest --ci",
"clean": "rimraf ./dist"
},
"keywords": [
"perks",
"async",
"autorest",
"azure",
"typescript"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/perks/issues"
},
"homepage": "https://github.com/Azure/perks/tree/master/uri#readme",
"readme": "https://github.com/Azure/perks/tree/master/uri/readme.md",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "~14.14.20",
"@types/urijs": "~1.19.14",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.2.0",
"eslint-plugin-unicorn": "~27.0.0",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"prettier": "~2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "~4.2.3"
},
"dependencies": {
"get-uri": "~3.0.2",
"urijs": "~1.19.1",
"file-url": "3.0.0",
"@azure-tools/async-io": "~3.0.0"
}
}