-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 810 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 810 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "strict-uri-encode-cli",
"version": "1.0.3",
"description": "A stricter URI encode adhering to RFC 3986",
"license": "MIT",
"repository": "martinvd/strict-uri-encode-cli",
"author": {
"name": "Martin van Driel",
"email": "martinvd@gmail.com",
"url": "http://martinvandriel.com"
},
"bin": {
"strict-uri-encode": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js"
],
"keywords": [
"component",
"encode",
"RFC3986",
"uri"
],
"dependencies": {
"get-stdin": "^5.0.1",
"meow": "^3.7.0",
"strict-uri-encode": "^2.0.0"
},
"devDependencies": {
"ava": "0.25.0",
"execa": "0.10.0",
"xo": "0.20.3"
},
"xo": {
"esnext": true,
"space": true
}
}