|
2 | 2 | "name": "@aureooms/js-rational-field", |
3 | 3 | "description": "Rational field for JavaScript", |
4 | 4 | "version": "2.0.0", |
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "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 | + }, |
6 | 75 | "ava": { |
7 | 76 | "files": [ |
8 | 77 | "test/src/**/*" |
|
72 | 141 | } |
73 | 142 | } |
74 | 143 | }, |
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, |
144 | 144 | "xo": { |
145 | 145 | "prettier": true, |
146 | 146 | "plugins": [ |
|
0 commit comments