Skip to content

Commit de99bae

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

File tree

1 file changed

+77
-77
lines changed

1 file changed

+77
-77
lines changed

package.json

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,84 @@
22
"name": "@problem-solving/knapsack",
33
"description": "Knapsack problem algorithms for JavaScript",
44
"version": "0.0.0",
5+
"license": "AGPL-3.0",
56
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://computational-problem-solving.github.io/knapsack",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/computational-problem-solving/knapsack"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/computational-problem-solving/knapsack/issues"
14+
},
15+
"keywords": [
16+
"agpl",
17+
"algorithms",
18+
"complete",
19+
"computer",
20+
"dynamic",
21+
"in",
22+
"javascript",
23+
"knapsack",
24+
"meet",
25+
"middle",
26+
"np",
27+
"polynomial",
28+
"programming",
29+
"pseudo",
30+
"reductions",
31+
"science",
32+
"the"
33+
],
34+
"sideEffects": false,
35+
"main": "lib/index.js",
36+
"files": [
37+
"lib"
38+
],
39+
"scripts": {
40+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
41+
"cover": "nyc --reporter=lcov npm test",
42+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
43+
"esdoc": "esdoc",
44+
"lint": "xo",
45+
"lint-config": "fixpack --dryRun",
46+
"lint-config-and-fix": "fixpack || fixpack",
47+
"prepare": "npm run build",
48+
"release": "np",
49+
"test": "ava",
50+
"travis": "npm run lint && npm run cover"
51+
},
52+
"dependencies": {
53+
"@iterable-iterator/filter": "^1.0.1",
54+
"@iterable-iterator/map": "^1.0.1",
55+
"@iterable-iterator/range": "^2.1.0",
56+
"@iterable-iterator/reduce": "^1.0.1",
57+
"@iterable-iterator/sorted": "^1.0.0",
58+
"@total-order/key": "^1.0.0",
59+
"@total-order/primitive": "^1.0.1"
60+
},
61+
"devDependencies": {
62+
"@babel/cli": "7.16.0",
63+
"@babel/core": "7.16.5",
64+
"@babel/preset-env": "7.16.5",
65+
"@babel/register": "7.16.5",
66+
"ava": "^3.15.0",
67+
"babel-plugin-transform-remove-console": "6.9.4",
68+
"babel-plugin-unassert": "3.2.0",
69+
"babel-preset-power-assert": "3.0.0",
70+
"coveralls": "3.1.1",
71+
"esdoc": "1.1.0",
72+
"esdoc-ecmascript-proposal-plugin": "1.0.0",
73+
"esdoc-inject-script-plugin": "1.0.0",
74+
"esdoc-inject-style-plugin": "1.0.0",
75+
"esdoc-standard-plugin": "1.0.0",
76+
"fixpack": "4.0.0",
77+
"np": "7.6.0",
78+
"nyc": "15.1.0",
79+
"power-assert": "1.6.1",
80+
"regenerator-runtime": "0.13.9",
81+
"xo": "0.47.0"
82+
},
683
"ava": {
784
"files": [
885
"test/src/**/*"
@@ -73,86 +150,9 @@
73150
}
74151
}
75152
},
76-
"bugs": {
77-
"url": "https://github.com/computational-problem-solving/knapsack/issues"
78-
},
79-
"dependencies": {
80-
"@iterable-iterator/filter": "^1.0.1",
81-
"@iterable-iterator/map": "^1.0.1",
82-
"@iterable-iterator/range": "^2.1.0",
83-
"@iterable-iterator/reduce": "^1.0.1",
84-
"@iterable-iterator/sorted": "^1.0.0",
85-
"@total-order/key": "^1.0.0",
86-
"@total-order/primitive": "^1.0.1"
87-
},
88-
"devDependencies": {
89-
"@babel/cli": "7.16.0",
90-
"@babel/core": "7.16.5",
91-
"@babel/preset-env": "7.16.5",
92-
"@babel/register": "7.16.5",
93-
"ava": "^3.15.0",
94-
"babel-plugin-transform-remove-console": "6.9.4",
95-
"babel-plugin-unassert": "3.2.0",
96-
"babel-preset-power-assert": "3.0.0",
97-
"coveralls": "3.1.1",
98-
"esdoc": "1.1.0",
99-
"esdoc-ecmascript-proposal-plugin": "1.0.0",
100-
"esdoc-inject-script-plugin": "1.0.0",
101-
"esdoc-inject-style-plugin": "1.0.0",
102-
"esdoc-standard-plugin": "1.0.0",
103-
"np": "7.6.0",
104-
"nyc": "15.1.0",
105-
"power-assert": "1.6.1",
106-
"regenerator-runtime": "0.13.9",
107-
"xo": "0.47.0",
108-
"fixpack": "4.0.0"
109-
},
110-
"files": [
111-
"lib"
112-
],
113-
"homepage": "https://computational-problem-solving.github.io/knapsack",
114-
"keywords": [
115-
"agpl",
116-
"algorithms",
117-
"complete",
118-
"computer",
119-
"dynamic",
120-
"in",
121-
"javascript",
122-
"knapsack",
123-
"meet",
124-
"middle",
125-
"np",
126-
"polynomial",
127-
"programming",
128-
"pseudo",
129-
"reductions",
130-
"science",
131-
"the"
132-
],
133-
"license": "AGPL-3.0",
134-
"main": "lib/index.js",
135153
"prettier": {
136154
"trailingComma": "all"
137155
},
138-
"repository": {
139-
"type": "git",
140-
"url": "https://github.com/computational-problem-solving/knapsack"
141-
},
142-
"scripts": {
143-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
144-
"cover": "nyc --reporter=lcov npm test",
145-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
146-
"esdoc": "esdoc",
147-
"lint": "xo",
148-
"prepare": "npm run build",
149-
"release": "np",
150-
"test": "ava",
151-
"travis": "npm run lint && npm run cover",
152-
"lint-config-and-fix": "fixpack || fixpack",
153-
"lint-config": "fixpack --dryRun"
154-
},
155-
"sideEffects": false,
156156
"xo": {
157157
"prettier": true,
158158
"ignore": [

0 commit comments

Comments
 (0)