Skip to content

Commit 7a2bf27

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/b6b4f0332a3361f6005cf1c244b958f3cbcd1d1b/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent 22ff1b6 commit 7a2bf27

File tree

1 file changed

+59
-59
lines changed

1 file changed

+59
-59
lines changed

package.json

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,65 @@
22
"name": "@aureooms/js-collections-deque",
33
"description": "Python's deque data structure for JavaScript",
44
"version": "4.0.1",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
7+
"homepage": "https://aureooms.github.io/js-collections-deque",
8+
"repository": {
9+
"url": "https://github.com/aureooms/js-collections-deque",
10+
"type": "git"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/aureooms/js-collections-deque/issues"
14+
},
15+
"keywords": [
16+
"collection",
17+
"collections",
18+
"deque",
19+
"javascript",
20+
"js"
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": "true",
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-error": "^5.0.0"
42+
},
43+
"devDependencies": {
44+
"@aureooms/js-itertools": "4.1.0",
45+
"@babel/cli": "7.13.10",
46+
"@babel/core": "7.13.10",
47+
"@babel/preset-env": "7.13.10",
48+
"@babel/register": "7.13.8",
49+
"ava": "3.15.0",
50+
"babel-plugin-transform-remove-console": "6.9.4",
51+
"babel-plugin-unassert": "3.0.1",
52+
"babel-preset-power-assert": "3.0.0",
53+
"coveralls": "3.1.0",
54+
"esdoc": "1.1.0",
55+
"esdoc-inject-script-plugin": "1.0.0",
56+
"esdoc-inject-style-plugin": "1.0.0",
57+
"esdoc-standard-plugin": "1.0.0",
58+
"fixpack": "4.0.0",
59+
"np": "7.4.0",
60+
"nyc": "15.1.0",
61+
"power-assert": "1.6.1",
62+
"regenerator-runtime": "0.13.7"
63+
},
664
"ava": {
765
"require": [
866
"regenerator-runtime/runtime",
@@ -71,63 +129,5 @@
71129
"sourceMaps": "inline"
72130
}
73131
}
74-
},
75-
"bugs": {
76-
"url": "https://github.com/aureooms/js-collections-deque/issues"
77-
},
78-
"dependencies": {
79-
"@aureooms/js-error": "^5.0.0"
80-
},
81-
"devDependencies": {
82-
"@aureooms/js-itertools": "4.1.0",
83-
"@babel/cli": "7.13.10",
84-
"@babel/core": "7.13.10",
85-
"@babel/preset-env": "7.13.10",
86-
"@babel/register": "7.13.8",
87-
"ava": "3.15.0",
88-
"babel-plugin-transform-remove-console": "6.9.4",
89-
"babel-plugin-unassert": "3.0.1",
90-
"babel-preset-power-assert": "3.0.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-collections-deque",
106-
"keywords": [
107-
"collection",
108-
"collections",
109-
"deque",
110-
"javascript",
111-
"js"
112-
],
113-
"license": "AGPL-3.0",
114-
"main": "lib/index.js",
115-
"repository": {
116-
"url": "https://github.com/aureooms/js-collections-deque",
117-
"type": "git"
118-
},
119-
"scripts": {
120-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
121-
"cover": "nyc --reporter=lcov npm test",
122-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
123-
"esdoc": "esdoc",
124-
"lint": "true",
125-
"prepare": "npm run build",
126-
"release": "np",
127-
"test": "ava",
128-
"travis": "npm run lint && npm run cover",
129-
"lint-config": "fixpack --dryRun",
130-
"lint-config-and-fix": "fixpack || fixpack"
131-
},
132-
"sideEffects": false
132+
}
133133
}

0 commit comments

Comments
 (0)