-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 755 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 755 Bytes
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
{
"author": "Stephen Sugden <me@stephensugden.com> (http://stephensugden.com)",
"name": "uri-template",
"description": "Parse and expand URI templates as defined by http://tools.ietf.org/html/rfc6570",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/grncdr/uri-template.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "make clean all",
"test": "make test"
},
"dependencies": {
"pct-encode": "~1.0.0"
},
"devDependencies": {
"@types/node": "^16.11.0",
"peggy": "^1.2.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"files": [
"dist",
"lib",
"AUTHORS",
"LICENSE",
"README.md"
],
"license": "MIT"
}