Skip to content

Commit b828251

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

File tree

1 file changed

+64
-64
lines changed

1 file changed

+64
-64
lines changed

package.json

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,71 @@
22
"name": "@functional-data-structure/persistent-stack",
33
"description": "Persistent stack data structures for JavaScript",
44
"version": "0.0.0",
5+
"license": "AGPL-3.0",
56
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://functional-data-structure.github.io/persistent-stack",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/functional-data-structure/persistent-stack"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/functional-data-structure/persistent-stack/issues"
14+
},
15+
"keywords": [
16+
"data",
17+
"persistent",
18+
"stack",
19+
"structures"
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": "xo",
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+
"dependencies": {
40+
"@failure-abstraction/error": "^6.0.1",
41+
"@iterable-iterator/reduce": "^1.0.1"
42+
},
43+
"devDependencies": {
44+
"@babel/cli": "7.13.10",
45+
"@babel/core": "7.13.10",
46+
"@babel/preset-env": "7.13.10",
47+
"@babel/register": "7.13.8",
48+
"@iterable-iterator/list": "^1.0.1",
49+
"@iterable-iterator/range": "^2.0.1",
50+
"@iterable-iterator/reversed": "^1.0.0",
51+
"@iterable-iterator/zip": "^1.0.1",
52+
"@set-theory/cartesian-product": "^2.0.1",
53+
"ava": "3.15.0",
54+
"babel-plugin-transform-remove-console": "6.9.4",
55+
"babel-plugin-unassert": "3.0.1",
56+
"babel-preset-power-assert": "3.0.0",
57+
"coveralls": "3.1.0",
58+
"esdoc": "1.1.0",
59+
"esdoc-ecmascript-proposal-plugin": "1.0.0",
60+
"esdoc-inject-script-plugin": "1.0.0",
61+
"esdoc-inject-style-plugin": "1.0.0",
62+
"esdoc-standard-plugin": "1.0.0",
63+
"fixpack": "4.0.0",
64+
"np": "7.4.0",
65+
"nyc": "15.1.0",
66+
"power-assert": "1.6.1",
67+
"regenerator-runtime": "0.13.7",
68+
"xo": "0.36.1"
69+
},
670
"ava": {
771
"files": [
872
"test/src/**/*"
@@ -72,73 +136,9 @@
72136
}
73137
}
74138
},
75-
"bugs": {
76-
"url": "https://github.com/functional-data-structure/persistent-stack/issues"
77-
},
78-
"dependencies": {
79-
"@failure-abstraction/error": "^6.0.1",
80-
"@iterable-iterator/reduce": "^1.0.1"
81-
},
82-
"devDependencies": {
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-
"@iterable-iterator/list": "^1.0.1",
88-
"@iterable-iterator/range": "^2.0.1",
89-
"@iterable-iterator/reversed": "^1.0.0",
90-
"@iterable-iterator/zip": "^1.0.1",
91-
"@set-theory/cartesian-product": "^2.0.1",
92-
"ava": "3.15.0",
93-
"babel-plugin-transform-remove-console": "6.9.4",
94-
"babel-plugin-unassert": "3.0.1",
95-
"babel-preset-power-assert": "3.0.0",
96-
"coveralls": "3.1.0",
97-
"esdoc": "1.1.0",
98-
"esdoc-ecmascript-proposal-plugin": "1.0.0",
99-
"esdoc-inject-script-plugin": "1.0.0",
100-
"esdoc-inject-style-plugin": "1.0.0",
101-
"esdoc-standard-plugin": "1.0.0",
102-
"np": "7.4.0",
103-
"nyc": "15.1.0",
104-
"power-assert": "1.6.1",
105-
"regenerator-runtime": "0.13.7",
106-
"xo": "0.36.1",
107-
"fixpack": "4.0.0"
108-
},
109-
"files": [
110-
"lib"
111-
],
112-
"homepage": "https://functional-data-structure.github.io/persistent-stack",
113-
"keywords": [
114-
"data",
115-
"persistent",
116-
"stack",
117-
"structures"
118-
],
119-
"license": "AGPL-3.0",
120-
"main": "lib/index.js",
121139
"prettier": {
122140
"trailingComma": "all"
123141
},
124-
"repository": {
125-
"type": "git",
126-
"url": "https://github.com/functional-data-structure/persistent-stack"
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
"plugins": [

0 commit comments

Comments
 (0)