Skip to content

Commit 251fab3

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/b7b7316fcc320ee7d249b0aa391d9a196c944421/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent 01dd108 commit 251fab3

File tree

1 file changed

+45
-45
lines changed

1 file changed

+45
-45
lines changed

package.json

Lines changed: 45 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,36 @@
22
"name": "@aureooms/js-fibonacci-heap",
33
"description": "Fibonacci heap data structure for JavaScript",
44
"version": "1.0.0",
5+
"license": "AGPL-3.0",
56
"author": "aureooms",
6-
"ava": {
7-
"files": [
8-
"test/src/**/*"
9-
],
10-
"require": [
11-
"regenerator-runtime/runtime",
12-
"@babel/register"
13-
],
14-
"timeout": "1m"
15-
},
16-
"babel": {
17-
"presets": [
18-
"@babel/preset-env"
19-
],
20-
"env": {
21-
"development": {
22-
"sourceMaps": "inline"
23-
}
24-
}
7+
"homepage": "https://aureooms.github.io/js-fibonacci-heap",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/aureooms/js-fibonacci-heap"
2511
},
2612
"bugs": {
2713
"url": "https://github.com/aureooms/js-fibonacci-heap/issues"
2814
},
15+
"keywords": [
16+
"data",
17+
"fibonacci",
18+
"heap",
19+
"structure"
20+
],
21+
"main": "lib/index.js",
22+
"files": [
23+
"lib"
24+
],
25+
"scripts": {
26+
"build": "rm -rf lib && babel src -d lib",
27+
"cover": "nyc --reporter=lcov npm test",
28+
"esdoc": "esdoc",
29+
"lint-config": "fixpack --dryRun",
30+
"lint-config-and-fix": "fixpack || fixpack",
31+
"prepare": "npm run build",
32+
"release": "np",
33+
"test": "xo && ava"
34+
},
2935
"dependencies": {
3036
"@aureooms/js-cll": "^1.0.0"
3137
},
@@ -42,37 +48,31 @@
4248
"esdoc-inject-script-plugin": "1.0.0",
4349
"esdoc-inject-style-plugin": "1.0.0",
4450
"esdoc-standard-plugin": "1.0.0",
51+
"fixpack": "4.0.0",
4552
"np": "7.4.0",
4653
"nyc": "15.1.0",
4754
"regenerator-runtime": "0.13.7",
48-
"xo": "0.36.1",
49-
"fixpack": "4.0.0"
55+
"xo": "0.36.1"
5056
},
51-
"files": [
52-
"lib"
53-
],
54-
"homepage": "https://aureooms.github.io/js-fibonacci-heap",
55-
"keywords": [
56-
"data",
57-
"fibonacci",
58-
"heap",
59-
"structure"
60-
],
61-
"license": "AGPL-3.0",
62-
"main": "lib/index.js",
63-
"repository": {
64-
"type": "git",
65-
"url": "https://github.com/aureooms/js-fibonacci-heap"
57+
"ava": {
58+
"files": [
59+
"test/src/**/*"
60+
],
61+
"require": [
62+
"regenerator-runtime/runtime",
63+
"@babel/register"
64+
],
65+
"timeout": "1m"
6666
},
67-
"scripts": {
68-
"build": "rm -rf lib && babel src -d lib",
69-
"cover": "nyc --reporter=lcov npm test",
70-
"esdoc": "esdoc",
71-
"prepare": "npm run build",
72-
"release": "np",
73-
"test": "xo && ava",
74-
"lint-config-and-fix": "fixpack || fixpack",
75-
"lint-config": "fixpack --dryRun"
67+
"babel": {
68+
"presets": [
69+
"@babel/preset-env"
70+
],
71+
"env": {
72+
"development": {
73+
"sourceMaps": "inline"
74+
}
75+
}
7676
},
7777
"xo": {
7878
"prettier": true,

0 commit comments

Comments
 (0)