-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "decimalsystem",
"version": "1.1.1",
"description": "DecimalSystem is a powerful base conversion library that can convert any (real) number to any base (over 1), including non-integer bases like base PI.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"browser": "dist/decimalsystem.min.js",
"jsdeliver": "dist/decimalsystem.min.js",
"scripts": {
"build": "tsc && tsc -p tsconfig.browser.json && npx webpack",
"test": "nyc --reporter=lcov mocha --slow 0",
"coverage": "codecov",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uellenberg/DecimalSystem.git"
},
"keywords": [
"number",
"system",
"systems",
"base",
"bases",
"radix",
"converter",
"convert",
"conversion",
"numbers",
"int",
"integer",
"non-int",
"non-integer",
"decimal",
"dec",
"hex",
"bin",
"oct",
"any",
"base converter",
"base conversion",
"decimalsystem",
"decimalsystems",
"pi",
"any",
"library"
],
"author": "Jonah Uellenberg",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/uellenberg/DecimalSystem/issues"
},
"homepage": "https://decimalsystem.js.org",
"devDependencies": {
"@types/node": "^15.0.1",
"chai": "^4.3.4",
"codecov": "^3.8.1",
"eslint": "^7.25.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
},
"dependencies": {},
"engines": {
"node": ">=0.14"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}