-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "@msvargas97/pico.js",
"version": "1.0.2",
"description": "Implement rapid face detection (Viola Jones) and pupil detection, all development by tehnokv/picojs",
"module": "./build/src/index.js",
"main": "./build/src/index.js",
"typings": "./build/src/index.d.ts",
"scripts": {
"webpack": "webpack",
"build": "webpack",
"tsc": "tsc",
"publish:npm": "npm publish --access public",
"tsc-es6": "tsc --p tsconfig.es6.json",
"clean": "RMDIR /Q/S dist&&RMDIR /Q/S build",
"test": "echo \"Error: no test specified\" && exit 1",
"doc": "typedoc --out doc ./src --mode file --includeDeclarations --excludeExternals --module commonjs --target ES6 --tsconfig tsconfig.es6.json",
"deploy:doc": "gh-pages -d doc -e doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/punisher97/pico.js.git"
},
"keywords": [
"picojs",
"Viola",
"Jones",
"face",
"detection",
"Pupil",
"detection",
"pico.js"
],
"author": "Michael Vargas",
"license": "MIT",
"bugs": {
"url": "https://github.com/punisher97/pico.js/issues"
},
"homepage": "https://github.com/punisher97/pico.js#readme",
"devDependencies": {
"@types/node": "^12.7.11",
"gh-pages": "^2.1.1",
"ts-loader": "^6.2.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {}
}