-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.55 KB
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
49
50
51
52
{
"name": "adnot-beport-large",
"version": "1.3.3",
"description": "Notations used in Antimatter Dimensions, built for break_eternity.js. This set of notations is specifically built for numbers greater than 1e9e15",
"scripts": {
"build": "npm run build:ad",
"build:ad": "bili --config bili.config.base.ts && cp dist/ad-notations.min.js docs/ad-notations.min.js",
"build:community": "bili --config bili.config.community.ts && cp dist/ad-notations.community.min.js docs/ad-notations.community.min.js",
"lint": "eslint .",
"test": "jest",
"publish": "npm run build && npm publish"
},
"main": "dist/ad-notations.umd.js",
"module": "dist/ad-notations.esm.js",
"unpkg": "dist/ad-notations.umd.js",
"jsdelivr": "dist/ad-notations.umd.js",
"keywords": [
"notations",
"numbers"
],
"license": "MIT",
"files": [
"dist",
"docs",
"package.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/HexaVault/BEnotations-post.git"
},
"bugs": {
"url": "https://github.com/HexaVault/BEnotations-post/issues"
},
"homepage": "https://github.com/HexaVault/BEnotations-post",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"bili": "^5.0.2",
"eslint": "^7.0.0",
"jest": "^26.6.3",
"rollup-plugin-typescript2": "^0.31.0",
"ts-jest": "^26.5.4",
"typescript": "^4.0.3"
},
"dependencies": {
"break_eternity.js": "^2.1.1",
"tslib": "^2.0.0"
}
}