Skip to content

Commit 4144f60

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

File tree

1 file changed

+67
-67
lines changed

1 file changed

+67
-67
lines changed

package.json

Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,74 @@
22
"name": "@aureooms/js-fingertree",
33
"description": "Finger Trees for JavaScript",
44
"version": "5.0.2",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <[email protected]>",
7+
"homepage": "https://aureooms.github.io/js-fingertree",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/aureooms/js-fingertree"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/aureooms/js-fingertree/issues"
14+
},
15+
"keywords": [
16+
"data",
17+
"finger",
18+
"functional",
19+
"immutable",
20+
"javascript",
21+
"js",
22+
"persistent",
23+
"structure",
24+
"tree"
25+
],
26+
"sideEffects": false,
27+
"main": "lib/index.js",
28+
"files": [
29+
"lib"
30+
],
31+
"scripts": {
32+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
33+
"cover": "nyc --reporter=lcov npm test",
34+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
35+
"esdoc": "esdoc",
36+
"lint": "xo",
37+
"lint-config": "fixpack --dryRun",
38+
"lint-config-and-fix": "fixpack || fixpack",
39+
"prepare": "npm run build",
40+
"release": "np",
41+
"test": "ava",
42+
"travis": "npm run lint && npm run cover"
43+
},
44+
"dependencies": {},
45+
"devDependencies": {
46+
"@aureooms/js-itertools": "5.1.0",
47+
"@aureooms/js-measure": "2.0.0",
48+
"@aureooms/js-predicate": "3.0.1",
49+
"@babel/cli": "7.13.10",
50+
"@babel/core": "7.13.10",
51+
"@babel/preset-env": "7.13.12",
52+
"@babel/register": "7.13.8",
53+
"argparse": "2.0.1",
54+
"ava": "3.15.0",
55+
"babel-plugin-transform-remove-console": "6.9.4",
56+
"babel-plugin-unassert": "3.0.1",
57+
"babel-preset-power-assert": "3.0.0",
58+
"benchmark": "2.1.4",
59+
"coveralls": "3.1.0",
60+
"esdoc": "1.1.0",
61+
"esdoc-inject-script-plugin": "1.0.0",
62+
"esdoc-inject-style-plugin": "1.0.0",
63+
"esdoc-standard-plugin": "1.0.0",
64+
"fingertree": "0.1.7",
65+
"fixpack": "4.0.0",
66+
"microtime": "3.0.0",
67+
"np": "7.4.0",
68+
"nyc": "15.1.0",
69+
"power-assert": "1.6.1",
70+
"regenerator-runtime": "0.13.7",
71+
"xo": "0.38.2"
72+
},
673
"ava": {
774
"timeout": "1m",
875
"files": [
@@ -72,73 +139,6 @@
72139
}
73140
}
74141
},
75-
"bugs": {
76-
"url": "https://github.com/aureooms/js-fingertree/issues"
77-
},
78-
"dependencies": {},
79-
"devDependencies": {
80-
"@aureooms/js-itertools": "5.1.0",
81-
"@aureooms/js-measure": "2.0.0",
82-
"@aureooms/js-predicate": "3.0.1",
83-
"@babel/cli": "7.13.10",
84-
"@babel/core": "7.13.10",
85-
"@babel/preset-env": "7.13.12",
86-
"@babel/register": "7.13.8",
87-
"argparse": "2.0.1",
88-
"ava": "3.15.0",
89-
"babel-plugin-transform-remove-console": "6.9.4",
90-
"babel-plugin-unassert": "3.0.1",
91-
"babel-preset-power-assert": "3.0.0",
92-
"benchmark": "2.1.4",
93-
"coveralls": "3.1.0",
94-
"esdoc": "1.1.0",
95-
"esdoc-inject-script-plugin": "1.0.0",
96-
"esdoc-inject-style-plugin": "1.0.0",
97-
"esdoc-standard-plugin": "1.0.0",
98-
"fingertree": "0.1.7",
99-
"microtime": "3.0.0",
100-
"np": "7.4.0",
101-
"nyc": "15.1.0",
102-
"power-assert": "1.6.1",
103-
"regenerator-runtime": "0.13.7",
104-
"xo": "0.38.2",
105-
"fixpack": "4.0.0"
106-
},
107-
"files": [
108-
"lib"
109-
],
110-
"homepage": "https://aureooms.github.io/js-fingertree",
111-
"keywords": [
112-
"data",
113-
"finger",
114-
"functional",
115-
"immutable",
116-
"javascript",
117-
"js",
118-
"persistent",
119-
"structure",
120-
"tree"
121-
],
122-
"license": "AGPL-3.0",
123-
"main": "lib/index.js",
124-
"repository": {
125-
"type": "git",
126-
"url": "https://github.com/aureooms/js-fingertree"
127-
},
128-
"scripts": {
129-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
130-
"cover": "nyc --reporter=lcov npm test",
131-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
132-
"esdoc": "esdoc",
133-
"lint": "xo",
134-
"prepare": "npm run build",
135-
"release": "np",
136-
"test": "ava",
137-
"travis": "npm run lint && npm run cover",
138-
"lint-config-and-fix": "fixpack || fixpack",
139-
"lint-config": "fixpack --dryRun"
140-
},
141-
"sideEffects": false,
142142
"xo": {
143143
"prettier": true,
144144
"ignores": [

0 commit comments

Comments
 (0)