-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
49
50
51
52
53
54
{
"name": "@antimatter-dimensions/notations",
"version": "3.2.0",
"description": "Notations used in Antimatter Dimensions",
"scripts": {
"build": "npm run build:ad && npm run build:community",
"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"
},
"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/antimatter-dimensions/notations.git"
},
"bugs": {
"url": "https://github.com/antimatter-dimensions/notations/issues"
},
"homepage": "https://github.com/antimatter-dimensions/notations",
"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.30.0",
"ts-jest": "^26.5.4",
"typescript": "^4.0.3"
},
"dependencies": {
"break_infinity.js": "^2.0.0",
"tslib": "^2.0.0"
},
"peerDependencies": {
"break_infinity.js": "^2.0.0"
}
}