forked from tensorflow/tfjs-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "@tensorflow-models/toxicity",
"version": "1.2.2",
"description": "Toxicity model in TensorFlow.js",
"main": "dist/index.js",
"jsnext:main": "dist/toxicity.esm.js",
"module": "dist/toxicity.esm.js",
"unpkg": "dist/toxicity.min.js",
"jsdelivr": "dist/toxicity.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs-models.git"
},
"peerDependencies": {
"@tensorflow/tfjs-converter": "^3.3.0",
"@tensorflow/tfjs-core": "^3.3.0"
},
"dependencies": {
"@tensorflow-models/universal-sentence-encoder": "~1.2.2"
},
"devDependencies": {
"@tensorflow/tfjs-converter": "^3.3.0",
"@tensorflow/tfjs-core": "^3.3.0",
"@types/jasmine": "~3.6.8",
"babel-core": "^6.26.3",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"rimraf": "~2.6.2",
"rollup": "~0.58.2",
"rollup-plugin-node-resolve": "~3.3.0",
"rollup-plugin-typescript2": "~0.13.0",
"rollup-plugin-uglify": "~3.0.0",
"ts-node": "~8.8.2",
"tslint": "~5.18.0",
"typescript": "3.5.3",
"yalc": "~1.0.0-pre.50"
},
"resolutions": {
"is-svg": "4.3.1"
},
"scripts": {
"build": "rimraf dist && tsc",
"publish-local": "yarn build && rollup -c && yalc push",
"test": "ts-node --skip-ignore --project tsconfig.test.json run_tests.ts",
"build-npm": "yarn build && rollup -c",
"lint": "tslint -p . -t verbose"
},
"license": "Apache-2.0"
}