Skip to content

Commit 54cadc7

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

File tree

1 file changed

+69
-69
lines changed

1 file changed

+69
-69
lines changed

package.json

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,76 @@
22
"name": "@aureooms/js-rational-field",
33
"description": "Rational field for JavaScript",
44
"version": "2.0.0",
5+
"license": "AGPL-3.0",
56
"author": "aureooms",
7+
"homepage": "https://aureooms.github.io/js-rational-field",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/aureooms/js-rational-field"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/aureooms/js-rational-field/issues"
14+
},
15+
"keywords": [
16+
"big",
17+
"bigdec",
18+
"bigdecimal",
19+
"computation",
20+
"decimal",
21+
"exact",
22+
"field",
23+
"fraction",
24+
"rational"
25+
],
26+
"sideEffects": false,
27+
"main": "lib/index.js",
28+
"files": [
29+
"lib"
30+
],
31+
"scripts": {
32+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
33+
"cover": "nyc --reporter=lcov npm test",
34+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
35+
"esdoc": "esdoc",
36+
"lint": "xo",
37+
"lint-config": "fixpack --dryRun",
38+
"lint-config-and-fix": "fixpack || fixpack",
39+
"prepare": "npm run build",
40+
"release": "np",
41+
"test": "ava",
42+
"travis": "npm run lint && npm run cover"
43+
},
44+
"dependencies": {
45+
"@aureooms/js-error": "^5.0.2",
46+
"@aureooms/js-integer": "^10.0.1",
47+
"@aureooms/js-integer-big-endian": "^11.0.1",
48+
"@aureooms/js-number": "^3.1.0",
49+
"@aureooms/js-prime": "^4.0.0",
50+
"@aureooms/js-rational": "^4.0.1"
51+
},
52+
"devDependencies": {
53+
"@babel/cli": "7.13.10",
54+
"@babel/core": "7.13.10",
55+
"@babel/plugin-proposal-async-generator-functions": "7.13.8",
56+
"@babel/polyfill": "7.12.1",
57+
"@babel/preset-env": "7.13.12",
58+
"@babel/register": "7.13.8",
59+
"ava": "3.15.0",
60+
"babel-plugin-transform-remove-console": "6.9.4",
61+
"babel-plugin-unassert": "3.0.1",
62+
"babel-preset-power-assert": "3.0.0",
63+
"coveralls": "3.1.0",
64+
"esdoc": "1.1.0",
65+
"esdoc-ecmascript-proposal-plugin": "1.0.0",
66+
"esdoc-inject-script-plugin": "1.0.0",
67+
"esdoc-inject-style-plugin": "1.0.0",
68+
"esdoc-standard-plugin": "1.0.0",
69+
"fixpack": "4.0.0",
70+
"np": "7.4.0",
71+
"nyc": "15.1.0",
72+
"power-assert": "1.6.1",
73+
"xo": "0.38.2"
74+
},
675
"ava": {
776
"files": [
877
"test/src/**/*"
@@ -72,75 +141,6 @@
72141
}
73142
}
74143
},
75-
"bugs": {
76-
"url": "https://github.com/aureooms/js-rational-field/issues"
77-
},
78-
"dependencies": {
79-
"@aureooms/js-error": "^5.0.2",
80-
"@aureooms/js-integer": "^10.0.1",
81-
"@aureooms/js-integer-big-endian": "^11.0.1",
82-
"@aureooms/js-number": "^3.1.0",
83-
"@aureooms/js-prime": "^4.0.0",
84-
"@aureooms/js-rational": "^4.0.1"
85-
},
86-
"devDependencies": {
87-
"@babel/cli": "7.13.10",
88-
"@babel/core": "7.13.10",
89-
"@babel/plugin-proposal-async-generator-functions": "7.13.8",
90-
"@babel/polyfill": "7.12.1",
91-
"@babel/preset-env": "7.13.12",
92-
"@babel/register": "7.13.8",
93-
"ava": "3.15.0",
94-
"babel-plugin-transform-remove-console": "6.9.4",
95-
"babel-plugin-unassert": "3.0.1",
96-
"babel-preset-power-assert": "3.0.0",
97-
"coveralls": "3.1.0",
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.4.0",
104-
"nyc": "15.1.0",
105-
"power-assert": "1.6.1",
106-
"xo": "0.38.2",
107-
"fixpack": "4.0.0"
108-
},
109-
"files": [
110-
"lib"
111-
],
112-
"homepage": "https://aureooms.github.io/js-rational-field",
113-
"keywords": [
114-
"big",
115-
"bigdec",
116-
"bigdecimal",
117-
"computation",
118-
"decimal",
119-
"exact",
120-
"field",
121-
"fraction",
122-
"rational"
123-
],
124-
"license": "AGPL-3.0",
125-
"main": "lib/index.js",
126-
"repository": {
127-
"type": "git",
128-
"url": "https://github.com/aureooms/js-rational-field"
129-
},
130-
"scripts": {
131-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
132-
"cover": "nyc --reporter=lcov npm test",
133-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
134-
"esdoc": "esdoc",
135-
"lint": "xo",
136-
"prepare": "npm run build",
137-
"release": "np",
138-
"test": "ava",
139-
"travis": "npm run lint && npm run cover",
140-
"lint-config-and-fix": "fixpack || fixpack",
141-
"lint-config": "fixpack --dryRun"
142-
},
143-
"sideEffects": false,
144144
"xo": {
145145
"prettier": true,
146146
"plugins": [

0 commit comments

Comments
 (0)