-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 2.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@d4c/numjs",
"version": "0.17.34",
"description": "Like NumPy, in TypeScript and JavaScript",
"source": "src/index.ts",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"targets": {
"main": false,
"module": {
"context": "browser",
"isLibrary": true,
"sourceMap": false,
"outputFormat": "esmodule",
"includeNodeModules": true
},
"types": false
},
"repository": "https://github.com/grimmer0125/numjs",
"homepage": "https://grimmer0125.github.io/numjs",
"license": "MIT",
"dependencies": {
"@types/ndarray": "^1.0.11",
"cwise": "^1.0.10",
"ndarray": "^1.0.19",
"ndarray-fft": "^1.0.3",
"ndarray-gemm": "^1.0.0",
"ndarray-ops": "^1.2.2",
"typedarray-pool": "^1.2.0"
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.8",
"ava": "^3.15.0",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"gh-pages": "^3.2.3",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"parcel": "^2.0.1",
"ts-node": "^10.2.1",
"typedoc": "^0.22.7",
"typescript": "^4.4.2"
},
"scripts": {
"build": "run-s build:parcel build:main build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build:parcel": "parcel build && mv build/module/index.js build/module/numjs.min.js",
"cov:html": "nyc report --reporter=html",
"doc:html": "typedoc src/lib/index.ts src/lib/ndarray.ts src/lib/errors.ts --out build/docs",
"doc:publish": "touch build/docs/.nojekyll && gh-pages -m \"[ci skip] Updates\" -d build/docs -t -r https://github.com/grimmer0125/numjs.git",
"buildtest": "run-s build test:*",
"test": "mocha --require ts-node/register test/mocha/*.spec.ts",
"cov": "nyc mocha --require ts-node/register test/mocha/*.spec.ts",
"postversion": "npm publish"
},
"engines": {
"node": ">=12"
},
"keywords": [
"numpy",
"ndarray",
"array",
"tensor",
"matrix",
"linear",
"algebra",
"multidimensional",
"typescript",
"numerical",
"computing",
"stride",
"shape",
"science",
"javascript",
"node",
"browser",
"multi",
"dimension",
"volume"
],
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/main/"
}
},
"files": [
"!build/module/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}