Skip to content

Commit 4563aae

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

File tree

1 file changed

+58
-58
lines changed

1 file changed

+58
-58
lines changed

package.json

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,64 @@
22
"name": "@aureooms/js-red-black-tree",
33
"description": "Red-black tree library for JavaScript",
44
"version": "3.0.1",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
7+
"homepage": "https://aureooms.github.io/js-red-black-tree",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/aureooms/js-red-black-tree"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/aureooms/js-red-black-tree/issues"
14+
},
15+
"keywords": [
16+
"balanced binary search tree",
17+
"bst",
18+
"data structure",
19+
"red-black tree"
20+
],
21+
"sideEffects": false,
22+
"main": "lib/index.js",
23+
"files": [
24+
"lib"
25+
],
26+
"scripts": {
27+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
28+
"cover": "nyc --reporter=lcov npm test",
29+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
30+
"esdoc": "esdoc",
31+
"lint": "true",
32+
"lint-config": "fixpack --dryRun",
33+
"lint-config-and-fix": "fixpack || fixpack",
34+
"prepare": "npm run build",
35+
"release": "np",
36+
"test": "ava",
37+
"travis": "npm run lint && npm run cover"
38+
},
39+
"devDependencies": {
40+
"@aureooms/js-compare": "2.0.0",
41+
"@aureooms/js-itertools": "5.1.0",
42+
"@aureooms/js-random": "2.0.0",
43+
"@babel/cli": "7.13.10",
44+
"@babel/core": "7.13.13",
45+
"@babel/preset-env": "7.13.12",
46+
"@babel/register": "7.13.8",
47+
"ava": "3.15.0",
48+
"babel-plugin-transform-remove-console": "6.9.4",
49+
"babel-plugin-unassert": "3.0.1",
50+
"babel-preset-power-assert": "3.0.0",
51+
"chalk": "4.1.0",
52+
"coveralls": "3.1.0",
53+
"esdoc": "1.1.0",
54+
"esdoc-inject-script-plugin": "1.0.0",
55+
"esdoc-inject-style-plugin": "1.0.0",
56+
"esdoc-standard-plugin": "1.0.0",
57+
"fixpack": "4.0.0",
58+
"np": "7.4.0",
59+
"nyc": "15.1.0",
60+
"power-assert": "1.6.1",
61+
"regenerator-runtime": "0.13.7"
62+
},
663
"ava": {
764
"require": [
865
"regenerator-runtime/runtime",
@@ -71,62 +128,5 @@
71128
"sourceMaps": "inline"
72129
}
73130
}
74-
},
75-
"bugs": {
76-
"url": "https://github.com/aureooms/js-red-black-tree/issues"
77-
},
78-
"devDependencies": {
79-
"@aureooms/js-compare": "2.0.0",
80-
"@aureooms/js-itertools": "5.1.0",
81-
"@aureooms/js-random": "2.0.0",
82-
"@babel/cli": "7.13.10",
83-
"@babel/core": "7.13.13",
84-
"@babel/preset-env": "7.13.12",
85-
"@babel/register": "7.13.8",
86-
"ava": "3.15.0",
87-
"babel-plugin-transform-remove-console": "6.9.4",
88-
"babel-plugin-unassert": "3.0.1",
89-
"babel-preset-power-assert": "3.0.0",
90-
"chalk": "4.1.0",
91-
"coveralls": "3.1.0",
92-
"esdoc": "1.1.0",
93-
"esdoc-inject-script-plugin": "1.0.0",
94-
"esdoc-inject-style-plugin": "1.0.0",
95-
"esdoc-standard-plugin": "1.0.0",
96-
"np": "7.4.0",
97-
"nyc": "15.1.0",
98-
"power-assert": "1.6.1",
99-
"regenerator-runtime": "0.13.7",
100-
"fixpack": "4.0.0"
101-
},
102-
"files": [
103-
"lib"
104-
],
105-
"homepage": "https://aureooms.github.io/js-red-black-tree",
106-
"keywords": [
107-
"balanced binary search tree",
108-
"bst",
109-
"data structure",
110-
"red-black tree"
111-
],
112-
"license": "AGPL-3.0",
113-
"main": "lib/index.js",
114-
"repository": {
115-
"type": "git",
116-
"url": "https://github.com/aureooms/js-red-black-tree"
117-
},
118-
"scripts": {
119-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
120-
"cover": "nyc --reporter=lcov npm test",
121-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
122-
"esdoc": "esdoc",
123-
"lint": "true",
124-
"prepare": "npm run build",
125-
"release": "np",
126-
"test": "ava",
127-
"travis": "npm run lint && npm run cover",
128-
"lint-config-and-fix": "fixpack || fixpack",
129-
"lint-config": "fixpack --dryRun"
130-
},
131-
"sideEffects": false
131+
}
132132
}

0 commit comments

Comments
 (0)