-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.99 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
{
"name": "tfjs-special",
"version": "1.0.0",
"description": "Implements Beta, Gamma, Zeta, and Bessel functions for TensorFlow.js",
"main": "dist/index.js",
"jsdelivr": "dist/tfjs-special.min.js",
"unpkg": "dist/tfjs-special.min.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/tfjs-special.esm.js",
"module": "dist/tfjs-special.esm.js",
"scripts": {
"update:cephes": "bash scripts/update_cephes_deps.sh",
"build:kernels": "ts-node transpiler/build.ts",
"build:dist": "tsc && rollup -c",
"build:docs:json": "typedoc src/index.ts --exclude **/*_test.ts --target ES6 --mode file --json docs/api.json",
"build:docs:html": "node build-docs/build.js",
"build:docs:dist": "cp dist/tfjs-special.min.js docs/tfjs-special.min.js",
"build:docs": "npm run build:docs:json && npm run build:docs:html && npm run build:docs:dist",
"build": "npm run build:kernels && npm run build:dist && npm run build:docs",
"test": "karma start",
"lint": "tslint -p . -t verbose"
},
"author": "Andreas Madsen",
"repository": {
"type": "git",
"url": "https://github.com/AndreasMadsen/tfjs-special.git"
},
"license": "BSD-3-Clause",
"peerDependencies": {
"@tensorflow/tfjs-core": "1.2.1"
},
"devDependencies": {
"@tensorflow/tfjs-core": "^1.2.0",
"@types/jasmine": "^3.3.13",
"@types/katex": "^0.10.1",
"@types/node": "~9.6.0",
"@types/webgl-ext": "0.0.30",
"@types/webgl2": "0.0.4",
"handlebars": "^4.1.2",
"jasmine": "~3.1.0",
"jasmine-core": "~3.1.0",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~1.1.0",
"karma-typescript": "~4.0.0",
"katex": "^0.10.2",
"marked": "^0.7.0",
"rollup": "~1.16.6",
"rollup-plugin-node-resolve": "~5.2.0",
"rollup-plugin-terser": "~5.1.1",
"rollup-plugin-typescript2": "~0.21.2",
"ts-node": "^8.3.0",
"tslint": "~5.11.0",
"tslint-no-circular-imports": "~0.5.0",
"typedoc": "^0.14.2",
"typescript": "3.3.3333"
}
}