Skip to content

Commit bb424cf

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

File tree

1 file changed

+66
-66
lines changed

1 file changed

+66
-66
lines changed

package.json

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,72 @@
22
"name": "@combinatorics/permutation",
33
"description": "Permutation library for JavaScript",
44
"version": "2.0.0",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
7+
"homepage": "https://computational-combinatorics.github.io/permutation",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/make-github-pseudonymous-again/js-permutation"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/make-github-pseudonymous-again/js-permutation/issues"
14+
},
15+
"keywords": [
16+
"algorithm",
17+
"javascript",
18+
"js",
19+
"list",
20+
"permutation"
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+
"devDependencies": {
42+
"@aureooms/js-factorial": "1.0.0",
43+
"@aureooms/js-functools": "2.0.3",
44+
"@aureooms/js-random": "3.4.0",
45+
"@aureooms/js-sort": "7.0.0",
46+
"@babel/cli": "7.14.3",
47+
"@babel/core": "7.14.3",
48+
"@babel/preset-env": "7.14.2",
49+
"@babel/register": "7.13.16",
50+
"@iterable-iterator/chain": "^1.0.0",
51+
"@iterable-iterator/list": "^0.0.2",
52+
"@iterable-iterator/slice": "^0.0.1",
53+
"@set-theory/closure": "^0.0.1",
54+
"@total-order/lex": "^0.0.1",
55+
"@total-order/primitive": "^0.0.2",
56+
"ava": "3.15.0",
57+
"babel-plugin-transform-remove-console": "6.9.4",
58+
"babel-plugin-unassert": "3.1.0",
59+
"babel-preset-power-assert": "3.0.0",
60+
"coveralls": "3.1.0",
61+
"esdoc": "1.1.0",
62+
"esdoc-inject-script-plugin": "1.0.0",
63+
"esdoc-inject-style-plugin": "1.0.0",
64+
"esdoc-standard-plugin": "1.0.0",
65+
"fixpack": "4.0.0",
66+
"np": "7.5.0",
67+
"nyc": "15.1.0",
68+
"power-assert": "1.6.1",
69+
"regenerator-runtime": "0.13.7"
70+
},
671
"ava": {
772
"require": [
873
"regenerator-runtime/runtime",
@@ -71,70 +136,5 @@
71136
"sourceMaps": "inline"
72137
}
73138
}
74-
},
75-
"bugs": {
76-
"url": "https://github.com/make-github-pseudonymous-again/js-permutation/issues"
77-
},
78-
"dependencies": {},
79-
"devDependencies": {
80-
"@aureooms/js-factorial": "1.0.0",
81-
"@aureooms/js-functools": "2.0.3",
82-
"@aureooms/js-random": "3.4.0",
83-
"@aureooms/js-sort": "7.0.0",
84-
"@babel/cli": "7.14.3",
85-
"@babel/core": "7.14.3",
86-
"@babel/preset-env": "7.14.2",
87-
"@babel/register": "7.13.16",
88-
"@iterable-iterator/chain": "^1.0.0",
89-
"@iterable-iterator/list": "^0.0.2",
90-
"@iterable-iterator/slice": "^0.0.1",
91-
"@set-theory/closure": "^0.0.1",
92-
"@total-order/lex": "^0.0.1",
93-
"@total-order/primitive": "^0.0.2",
94-
"ava": "3.15.0",
95-
"babel-plugin-transform-remove-console": "6.9.4",
96-
"babel-plugin-unassert": "3.1.0",
97-
"babel-preset-power-assert": "3.0.0",
98-
"coveralls": "3.1.0",
99-
"esdoc": "1.1.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.5.0",
104-
"nyc": "15.1.0",
105-
"power-assert": "1.6.1",
106-
"regenerator-runtime": "0.13.7",
107-
"fixpack": "4.0.0"
108-
},
109-
"files": [
110-
"lib"
111-
],
112-
"homepage": "https://computational-combinatorics.github.io/permutation",
113-
"keywords": [
114-
"algorithm",
115-
"javascript",
116-
"js",
117-
"list",
118-
"permutation"
119-
],
120-
"license": "AGPL-3.0",
121-
"main": "lib/index.js",
122-
"repository": {
123-
"type": "git",
124-
"url": "https://github.com/make-github-pseudonymous-again/js-permutation"
125-
},
126-
"scripts": {
127-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
128-
"cover": "nyc --reporter=lcov npm test",
129-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
130-
"esdoc": "esdoc",
131-
"lint": "true",
132-
"prepare": "npm run build",
133-
"release": "np",
134-
"test": "ava",
135-
"travis": "npm run lint && npm run cover",
136-
"lint-config-and-fix": "fixpack || fixpack",
137-
"lint-config": "fixpack --dryRun"
138-
},
139-
"sideEffects": false
139+
}
140140
}

0 commit comments

Comments
 (0)