Skip to content

Commit 97ac9b3

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

File tree

1 file changed

+65
-65
lines changed

1 file changed

+65
-65
lines changed

package.json

Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,71 @@
22
"name": "@aureooms/js-random",
33
"description": "Randomness algorithms for JavaScript",
44
"version": "2.0.0",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <[email protected]>",
7+
"homepage": "https://aureooms.github.io/js-random",
8+
"repository": {
9+
"url": "https://github.com/aureooms/js-random",
10+
"type": "git"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/aureooms/js-random/issues"
14+
},
15+
"keywords": [
16+
"javascript",
17+
"js",
18+
"randfloat",
19+
"randint",
20+
"random",
21+
"randomness",
22+
"sample",
23+
"shuffle"
24+
],
25+
"sideEffects": false,
26+
"main": "lib/index.js",
27+
"files": [
28+
"lib"
29+
],
30+
"scripts": {
31+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
32+
"cover": "nyc --reporter=lcov npm test",
33+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
34+
"esdoc": "esdoc",
35+
"lint": "true",
36+
"lint-config": "fixpack --dryRun",
37+
"lint-config-and-fix": "fixpack || fixpack",
38+
"prepare": "npm run build",
39+
"release": "np",
40+
"test": "ava",
41+
"travis": "npm run lint && npm run cover"
42+
},
43+
"dependencies": {},
44+
"devDependencies": {
45+
"@aureooms/js-array": "4.0.0",
46+
"@aureooms/js-functools": "2.0.3",
47+
"@aureooms/js-itertools": "5.0.1",
48+
"@aureooms/js-memory": "4.0.0",
49+
"@aureooms/js-operator": "1.0.2",
50+
"@aureooms/js-type": "1.0.4",
51+
"@babel/cli": "7.13.10",
52+
"@babel/core": "7.13.10",
53+
"@babel/preset-env": "7.13.10",
54+
"@babel/register": "7.13.8",
55+
"ava": "3.15.0",
56+
"babel-plugin-transform-remove-console": "6.9.4",
57+
"babel-plugin-unassert": "3.0.1",
58+
"babel-preset-power-assert": "3.0.0",
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+
"fixpack": "4.0.0",
65+
"np": "7.4.0",
66+
"nyc": "15.1.0",
67+
"power-assert": "1.6.1",
68+
"regenerator-runtime": "0.13.7"
69+
},
670
"ava": {
771
"require": [
872
"regenerator-runtime/runtime",
@@ -72,69 +136,5 @@
72136
"sourceMaps": "inline"
73137
}
74138
}
75-
},
76-
"bugs": {
77-
"url": "https://github.com/aureooms/js-random/issues"
78-
},
79-
"dependencies": {},
80-
"devDependencies": {
81-
"@aureooms/js-array": "4.0.0",
82-
"@aureooms/js-functools": "2.0.3",
83-
"@aureooms/js-itertools": "5.0.1",
84-
"@aureooms/js-memory": "4.0.0",
85-
"@aureooms/js-operator": "1.0.2",
86-
"@aureooms/js-type": "1.0.4",
87-
"@babel/cli": "7.13.10",
88-
"@babel/core": "7.13.10",
89-
"@babel/preset-env": "7.13.10",
90-
"@babel/register": "7.13.8",
91-
"ava": "3.15.0",
92-
"babel-plugin-transform-remove-console": "6.9.4",
93-
"babel-plugin-unassert": "3.0.1",
94-
"babel-preset-power-assert": "3.0.0",
95-
"coveralls": "3.1.0",
96-
"esdoc": "1.1.0",
97-
"esdoc-inject-script-plugin": "1.0.0",
98-
"esdoc-inject-style-plugin": "1.0.0",
99-
"esdoc-standard-plugin": "1.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-
"fixpack": "4.0.0"
105-
},
106-
"files": [
107-
"lib"
108-
],
109-
"homepage": "https://aureooms.github.io/js-random",
110-
"keywords": [
111-
"javascript",
112-
"js",
113-
"randfloat",
114-
"randint",
115-
"random",
116-
"randomness",
117-
"sample",
118-
"shuffle"
119-
],
120-
"license": "AGPL-3.0",
121-
"main": "lib/index.js",
122-
"repository": {
123-
"url": "https://github.com/aureooms/js-random",
124-
"type": "git"
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)