forked from rawify/Complex.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "complex.js",
"title": "Complex.js",
"version": "2.2.5",
"homepage": "https://raw.org/article/complex-numbers-in-javascript/",
"bugs": "https://github.com/rawify/Complex.js/issues",
"description": "A complex numbers library",
"keywords": [
"complex numbers",
"math",
"complex",
"number",
"calculus",
"parser",
"arithmetic"
],
"private": false,
"main": "./dist/complex.js",
"module": "./dist/complex.mjs",
"types": "./complex.d.ts",
"browser": "./dist/complex.min.js",
"unpkg": "./dist/complex.min.js",
"readmeFilename": "README.md",
"exports": {
".": {
"types": "./complex.d.ts",
"require": "./dist/complex.js",
"import": "./dist/complex.mjs"
}
},
"repository": {
"type": "git",
"url": "[email protected]:rawify/Complex.js.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rawify"
},
"author": {
"name": "Robert Eisele",
"email": "[email protected]",
"url": "https://raw.org/"
},
"license": "MIT",
"engines": {
"node": "*"
},
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "crude-build Complex",
"test": "mocha tests/*.js"
},
"devDependencies": {
"crude-build": "^0.1.1",
"mocha": "*"
}
}