forked from infinitered/nsfwjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "nsfw-filter-nsfwjs",
"version": "3.0.2",
"unpkg": "dist/nsfwjs.min.js",
"description": "Detect NSFW content client side",
"main": "dist/index.js",
"scripts": {
"test": "yarn build && jest",
"lint": "tslint -p . -t verbose",
"shipit": "yarn build && yarn scriptbundle && yarn minbundle && np",
"build": "tsc --skipLibCheck",
"toc": "doctoc .",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prep": "yarn && yarn build && cd example/nsfw_demo/ && yarn add ../../ && cd -",
"scriptbundle": "browserify ./dist/nsfwjs.js --standalone nsfwjs --outfile ./dist/bundle.js",
"minbundle": "uglifyjs dist/bundle.js --compress --output dist/nsfwjs.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsfw-filter/nsfwjs.git"
},
"dependencies": {
"gif-frames": "^1.0.1"
},
"peerDependencies": {
"@tensorflow/tfjs": "^1.7.4"
},
"devDependencies": {
"@tensorflow/tfjs": "^1.7.4",
"@types/jest": "^26.0.0",
"all-contributors-cli": "^6.1.2",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"browserify": "^16.2.3",
"doctoc": "^1.4.0",
"jest": "^25.2.1",
"jpeg-js": "^0.4.0",
"node-fetch": "^2.3.0",
"np": "^5.0.0",
"seedrandom": "~3.0.3",
"ts-jest": "^25.2.1",
"ts-node": "~8.10.1",
"tslint": "~6.1.0",
"typescript": "3.9.7",
"uglify-js": "^3.6.0"
},
"keywords": [
"NSFW",
"JavaScript",
"ML",
"Machine",
"Learning",
"Tensorflow",
"JS"
],
"author": "Gant Laborde",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinitered/nsfwjs/issues"
},
"homepage": "https://nsfwjs.com"
}