-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 936 Bytes
/
package.json
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
{
"name": "eol",
"description": "Newline character converter",
"version": "0.10.0",
"homepage": "https://ryanve.github.io/eol",
"funding": "https://github.com/sponsors/ryanve",
"license": "MIT",
"author": "Ryan Van Etten",
"main": "eol.js",
"types": "eol.d.ts",
"typings": "eol.d.ts",
"scripts": {
"lint": "npx eslint",
"preversion": "npm test",
"pretest": "npm run lint",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanve/eol.git"
},
"bugs": {
"url": "https://github.com/ryanve/eol/issues"
},
"keywords": [
"eol",
"lf",
"cr",
"crlf",
"newline",
"newlines",
"convert",
"converter",
"conversion",
"character",
"formatting",
"format",
"string",
"javascript",
"typescript",
"ender",
"file"
],
"devDependencies": {
"aok": "^1.9.0",
"eslint": "^9.9.1"
}
}