simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

package.json (802B)


      1 {
      2   "name": "decimal.js",
      3   "description": "An arbitrary-precision Decimal type for JavaScript.",
      4   "version": "10.3.1",
      5   "keywords": [
      6     "arbitrary",
      7     "precision",
      8     "arithmetic",
      9     "big",
     10     "number",
     11     "decimal",
     12     "float",
     13     "biginteger",
     14     "bigdecimal",
     15     "bignumber",
     16     "bigint",
     17     "bignum"
     18   ],
     19   "repository" : {
     20     "type": "git",
     21     "url": "https://github.com/MikeMcl/decimal.js.git"
     22   },
     23   "main": "decimal",
     24   "module": "decimal.mjs",
     25   "browser": "decimal.js",
     26   "author": {
     27     "name": "Michael Mclaughlin",
     28     "email": "M8ch88l@gmail.com"
     29   },
     30   "license": "MIT",
     31   "scripts": {
     32     "test": "node ./test/test.js"
     33   },
     34   "types": "decimal.d.ts",
     35   "files": [
     36     "decimal.js",
     37     "decimal.mjs",
     38     "decimal.d.ts"
     39   ]
     40 }