Skip to content

Commit 7ba576e

Browse files
a-flying-potatomake-github-pseudonymous-again
authored andcommittedMar 25, 2021
🤖 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 3045bdb commit 7ba576e

File tree

1 file changed

+47
-47
lines changed

1 file changed

+47
-47
lines changed
 

‎package.json

+47-47
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,37 @@
22
"name": "@aureooms/js-number",
33
"description": "Primitive number type arithmetic for JavaScript",
44
"version": "3.1.0",
5+
"license": "AGPL-3.0",
56
"author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
6-
"ava": {
7-
"require": [
8-
"@babel/polyfill",
9-
"@babel/register"
10-
],
11-
"files": [
12-
"test/src/**/*"
13-
],
14-
"timeout": "1m",
15-
"concurrency": 8
16-
},
17-
"babel": {
18-
"presets": [
19-
"@babel/preset-env"
20-
],
21-
"env": {
22-
"development": {
23-
"sourceMaps": "inline"
24-
}
25-
}
7+
"homepage": "https://aureooms.github.io/js-number",
8+
"repository": {
9+
"url": "https://github.com/aureooms/js-number",
10+
"type": "git"
2611
},
2712
"bugs": {
2813
"url": "https://github.com/aureooms/js-number/issues"
2914
},
15+
"keywords": [
16+
"arithmetic",
17+
"javascript",
18+
"js",
19+
"number",
20+
"primitive"
21+
],
22+
"main": "lib/index.js",
23+
"files": [
24+
"lib"
25+
],
26+
"scripts": {
27+
"build": "rm -rf lib && babel src -d lib",
28+
"cover": "nyc --reporter=lcov npm test",
29+
"esdoc": "esdoc",
30+
"lint-config": "fixpack --dryRun",
31+
"lint-config-and-fix": "fixpack || fixpack",
32+
"prepare": "npm run build",
33+
"release": "np",
34+
"test": "ava"
35+
},
3036
"dependencies": {},
3137
"devDependencies": {
3238
"@aureooms/js-algorithms": "^3.0.7",
@@ -43,35 +49,29 @@
4349
"esdoc-inject-script-plugin": "1.0.0",
4450
"esdoc-inject-style-plugin": "1.0.0",
4551
"esdoc-standard-plugin": "1.0.0",
52+
"fixpack": "4.0.0",
4653
"np": "7.4.0",
47-
"nyc": "^15.1.0",
48-
"fixpack": "4.0.0"
54+
"nyc": "^15.1.0"
4955
},
50-
"files": [
51-
"lib"
52-
],
53-
"homepage": "https://aureooms.github.io/js-number",
54-
"keywords": [
55-
"arithmetic",
56-
"javascript",
57-
"js",
58-
"number",
59-
"primitive"
60-
],
61-
"license": "AGPL-3.0",
62-
"main": "lib/index.js",
63-
"repository": {
64-
"url": "https://github.com/aureooms/js-number",
65-
"type": "git"
56+
"ava": {
57+
"require": [
58+
"@babel/polyfill",
59+
"@babel/register"
60+
],
61+
"files": [
62+
"test/src/**/*"
63+
],
64+
"timeout": "1m",
65+
"concurrency": 8
6666
},
67-
"scripts": {
68-
"build": "rm -rf lib && babel src -d lib",
69-
"cover": "nyc --reporter=lcov npm test",
70-
"esdoc": "esdoc",
71-
"prepare": "npm run build",
72-
"release": "np",
73-
"test": "ava",
74-
"lint-config-and-fix": "fixpack || fixpack",
75-
"lint-config": "fixpack --dryRun"
67+
"babel": {
68+
"presets": [
69+
"@babel/preset-env"
70+
],
71+
"env": {
72+
"development": {
73+
"sourceMaps": "inline"
74+
}
75+
}
7676
}
7777
}

0 commit comments

Comments
 (0)
Please sign in to comment.