Skip to content

Commit d9d10b1

Browse files
🤖 chore: Lint configuration files.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/ebf7e47fdba6d4d1465a98658ef1d4e78f0eace6/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent 54c9d57 commit d9d10b1

File tree

1 file changed

+61
-61
lines changed

1 file changed

+61
-61
lines changed

package.json

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,68 @@
22
"name": "@compression-algorithm/lempel-ziv",
33
"description": "Lempel-Ziv lossless data compression algorithms for JavaScript",
44
"version": "0.0.2",
5+
"license": "AGPL-3.0",
56
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://compression-algorithm.github.io/lempel-ziv",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/compression-algorithm/lempel-ziv"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/compression-algorithm/lempel-ziv/issues"
14+
},
15+
"keywords": [
16+
"compression",
17+
"lempel",
18+
"lossless",
19+
"lz",
20+
"ziv"
21+
],
22+
"sideEffects": false,
23+
"main": "lib/index.js",
24+
"files": [
25+
"lib"
26+
],
27+
"scripts": {
28+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
29+
"cover": "nyc --reporter=lcov npm test",
30+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
31+
"esdoc": "esdoc",
32+
"lint": "xo",
33+
"lint-config": "fixpack --dryRun",
34+
"lint-config-and-fix": "fixpack || fixpack",
35+
"prepare": "npm run build",
36+
"release": "np",
37+
"test": "ava",
38+
"travis": "npm run lint && npm run cover"
39+
},
40+
"dependencies": {
41+
"@aureooms/js-persistent-stack": "^0.0.0",
42+
"@aureooms/js-trie": "^0.0.1"
43+
},
44+
"devDependencies": {
45+
"@aureooms/js-string": "1.0.0",
46+
"@babel/cli": "7.13.10",
47+
"@babel/core": "7.13.10",
48+
"@babel/preset-env": "7.13.10",
49+
"@babel/register": "7.13.8",
50+
"ava": "3.15.0",
51+
"babel-plugin-transform-remove-console": "6.9.4",
52+
"babel-plugin-unassert": "3.0.1",
53+
"babel-preset-power-assert": "3.0.0",
54+
"coveralls": "3.1.0",
55+
"esdoc": "1.1.0",
56+
"esdoc-ecmascript-proposal-plugin": "1.0.0",
57+
"esdoc-inject-script-plugin": "1.0.0",
58+
"esdoc-inject-style-plugin": "1.0.0",
59+
"esdoc-standard-plugin": "1.0.0",
60+
"fixpack": "4.0.0",
61+
"np": "7.4.0",
62+
"nyc": "15.1.0",
63+
"power-assert": "1.6.1",
64+
"regenerator-runtime": "0.13.7",
65+
"xo": "0.36.1"
66+
},
667
"ava": {
768
"files": [
869
"test/src/**/*"
@@ -73,70 +134,9 @@
73134
}
74135
}
75136
},
76-
"bugs": {
77-
"url": "https://github.com/compression-algorithm/lempel-ziv/issues"
78-
},
79-
"dependencies": {
80-
"@aureooms/js-persistent-stack": "^0.0.0",
81-
"@aureooms/js-trie": "^0.0.1"
82-
},
83-
"devDependencies": {
84-
"@aureooms/js-string": "1.0.0",
85-
"@babel/cli": "7.13.10",
86-
"@babel/core": "7.13.10",
87-
"@babel/preset-env": "7.13.10",
88-
"@babel/register": "7.13.8",
89-
"ava": "3.15.0",
90-
"babel-plugin-transform-remove-console": "6.9.4",
91-
"babel-plugin-unassert": "3.0.1",
92-
"babel-preset-power-assert": "3.0.0",
93-
"coveralls": "3.1.0",
94-
"esdoc": "1.1.0",
95-
"esdoc-ecmascript-proposal-plugin": "1.0.0",
96-
"esdoc-inject-script-plugin": "1.0.0",
97-
"esdoc-inject-style-plugin": "1.0.0",
98-
"esdoc-standard-plugin": "1.0.0",
99-
"np": "7.4.0",
100-
"nyc": "15.1.0",
101-
"power-assert": "1.6.1",
102-
"regenerator-runtime": "0.13.7",
103-
"xo": "0.36.1",
104-
"fixpack": "4.0.0"
105-
},
106-
"files": [
107-
"lib"
108-
],
109-
"homepage": "https://compression-algorithm.github.io/lempel-ziv",
110-
"keywords": [
111-
"compression",
112-
"lempel",
113-
"lossless",
114-
"lz",
115-
"ziv"
116-
],
117-
"license": "AGPL-3.0",
118-
"main": "lib/index.js",
119137
"prettier": {
120138
"trailingComma": "all"
121139
},
122-
"repository": {
123-
"type": "git",
124-
"url": "https://github.com/compression-algorithm/lempel-ziv"
125-
},
126-
"scripts": {
127-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
128-
"cover": "nyc --reporter=lcov npm test",
129-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
130-
"esdoc": "esdoc",
131-
"lint": "xo",
132-
"prepare": "npm run build",
133-
"release": "np",
134-
"test": "ava",
135-
"travis": "npm run lint && npm run cover",
136-
"lint-config-and-fix": "fixpack || fixpack",
137-
"lint-config": "fixpack --dryRun"
138-
},
139-
"sideEffects": false,
140140
"xo": {
141141
"prettier": true,
142142
"plugins": [

0 commit comments

Comments
 (0)