-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "break_eternity.js",
"version": "2.1.1",
"description": "A Javascript numerical library to represent numbers as large as 10^^1e308 and as small as 10^-10^^1e308. Sequel to break_infinity.js, designed for incremental games.",
"main": "dist/break_eternity.js",
"module": "dist/break_eternity.esm.js",
"unpkg": "dist/break_eternity.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bili",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . && prettier --check .",
"fix": "prettier --write . && eslint --fix ."
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Patashu/break_eternity.js.git"
},
"keywords": [
"bignum",
"bignumber",
"bigdecimal",
"number",
"decimal"
],
"author": "Patashu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Patashu/break_eternity.js/issues"
},
"homepage": "https://github.com/Patashu/break_eternity.js#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"bili": "^5.0.5",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.23.1",
"prettier": "^2.2.1",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.2.3"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}