-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "phasor.js",
"version": "2.1.0",
"description": "Complex numbers done right",
"scripts": {
"build.bundler": "wasm-pack build --target bundler --out-dir dist/bundler",
"build.nodejs": "wasm-pack build --target nodejs --out-dir dist/nodejs --no-typescript",
"build": "run-s build.bundler build.nodejs",
"jest": "jest --no-cache",
"test": "run-s build jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunocodutra/phasor.js.git"
},
"keywords": [
"complex",
"math",
"polar",
"phasor",
"numeric"
],
"author": "Bruno Dutra <brunocodutra@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunocodutra/phasor.js/issues"
},
"homepage": "https://github.com/brunocodutra/phasor.js#readme",
"side-effects": false,
"main": "dist/nodejs/phasor.js",
"module": "dist/bundler/phasor.js",
"typings": "dist/bundler/phasor.d.ts",
"files": [
"dist/nodejs/phasor_bg.wasm",
"dist/nodejs/phasor.js",
"dist/bundler/phasor_bg.js",
"dist/bundler/phasor_bg.wasm",
"dist/bundler/phasor_bg.wasm.d.ts",
"dist/bundler/phasor.d.ts",
"dist/bundler/phasor.js"
],
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.3",
"typescript": "^5.0.4",
"wasm-pack": "^0.12.1"
}
}