Skip to content

Commit 0899ea9

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/9b50c2a1d7e9ab7b4bc9c9ff88892e98c5f62244/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent 923dd3b commit 0899ea9

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

package.json

+52-52
Original file line numberDiff line numberDiff line change
@@ -2,55 +2,16 @@
22
"name": "@list-abstraction/doubly-linked-list",
33
"description": "Doubly linked list code bricks for JavaScript",
44
"version": "7.0.0",
5+
"license": "AGPL-3.0",
56
"author": "make-github-pseudonymous-again",
6-
"ava": {
7-
"files": [
8-
"test/src/**/*"
9-
],
10-
"require": [
11-
"@babel/polyfill",
12-
"@babel/register"
13-
],
14-
"timeout": "1m"
15-
},
16-
"babel": {
17-
"presets": [
18-
"@babel/preset-env"
19-
],
20-
"plugins": [
21-
"@babel/plugin-proposal-async-generator-functions"
22-
],
23-
"env": {
24-
"development": {
25-
"sourceMaps": "inline"
26-
}
27-
}
7+
"homepage": "https://list-abstraction.github.io/doubly-linked-list",
8+
"repository": {
9+
"url": "https://github.com/list-abstraction/doubly-linked-list",
10+
"type": "git"
2811
},
2912
"bugs": {
3013
"url": "https://github.com/list-abstraction/doubly-linked-list/issues"
3114
},
32-
"dependencies": {},
33-
"devDependencies": {
34-
"@list-abstraction/specification": "10.0.0",
35-
"@babel/cli": "7.13.10",
36-
"@babel/core": "7.13.10",
37-
"@babel/polyfill": "7.12.1",
38-
"@babel/preset-env": "7.13.10",
39-
"@babel/register": "7.13.8",
40-
"ava": "3.15.0",
41-
"coveralls": "3.1.0",
42-
"esdoc": "1.1.0",
43-
"esdoc-inject-script-plugin": "1.0.0",
44-
"esdoc-inject-style-plugin": "1.0.0",
45-
"esdoc-standard-plugin": "1.0.0",
46-
"np": "7.4.0",
47-
"nyc": "15.1.0",
48-
"fixpack": "4.0.0"
49-
},
50-
"files": [
51-
"lib"
52-
],
53-
"homepage": "https://list-abstraction.github.io/doubly-linked-list",
5415
"keywords": [
5516
"bricks",
5617
"data",
@@ -65,20 +26,59 @@
6526
"structure",
6627
"structures"
6728
],
68-
"license": "AGPL-3.0",
6929
"main": "lib/index.js",
70-
"repository": {
71-
"url": "https://github.com/list-abstraction/doubly-linked-list",
72-
"type": "git"
73-
},
30+
"files": [
31+
"lib"
32+
],
7433
"scripts": {
7534
"build": "rm -rf lib && babel src -d lib",
7635
"cover": "nyc --reporter=lcov npm test",
7736
"esdoc": "esdoc",
37+
"lint-config": "fixpack --dryRun",
38+
"lint-config-and-fix": "fixpack || fixpack",
7839
"prepare": "npm run build",
7940
"release": "np",
80-
"test": "ava",
81-
"lint-config-and-fix": "fixpack || fixpack",
82-
"lint-config": "fixpack --dryRun"
41+
"test": "ava"
42+
},
43+
"dependencies": {},
44+
"devDependencies": {
45+
"@babel/cli": "7.13.10",
46+
"@babel/core": "7.13.10",
47+
"@babel/polyfill": "7.12.1",
48+
"@babel/preset-env": "7.13.10",
49+
"@babel/register": "7.13.8",
50+
"@list-abstraction/specification": "10.0.0",
51+
"ava": "3.15.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+
},
61+
"ava": {
62+
"files": [
63+
"test/src/**/*"
64+
],
65+
"require": [
66+
"@babel/polyfill",
67+
"@babel/register"
68+
],
69+
"timeout": "1m"
70+
},
71+
"babel": {
72+
"presets": [
73+
"@babel/preset-env"
74+
],
75+
"plugins": [
76+
"@babel/plugin-proposal-async-generator-functions"
77+
],
78+
"env": {
79+
"development": {
80+
"sourceMaps": "inline"
81+
}
82+
}
8383
}
8484
}

0 commit comments

Comments
 (0)