-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "trace-search",
"version": "0.0.5",
"description": "A privacy-focused tool for discovering, tracking, and sharing your online accounts.",
"keywords": [
"digital footprint",
"online footprint",
"accounts",
"profiles",
"privacy",
"security",
"social media",
"sherlock"
],
"author": "TRACE Digital",
"license": "GPL-3.0",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"start-docs": "npm run build-docs && webpack-dev-server --static docs --mode none",
"prepare": "npm run build-prod",
"prepublishOnly": "npm test && npm run lint",
"build": "npm run build-prod",
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"build-docs": "typedoc --out docs --includeVersion --exclude src/tests --entryPoints src/index.ts",
"test": "npm run test-quick -- --silent",
"test-all": "jest",
"test-quick": "jest --testPathIgnorePatterns='.*\\.slow\\.test\\.ts' --verbose",
"test-debug": "node --trace-warnings --inspect ./node_modules/.bin/jest --testPathIgnorePatterns='.*\\.slow\\.test\\.ts' --runInBand --detectOpenHandles",
"coverage": "npm test -- --coverage",
"format": "prettier --write .",
"lint": "tslint -p tsconfig.json"
},
"main": "dist/trace-search.js",
"module": "dist/trace-search.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"browser-or-node": "^1.3.0",
"buffer": "^6.0.3",
"crypto-pouch": "^3.1.3",
"events": "^3.3.0",
"node-fetch": "^2.6.1",
"pouchdb": "^7.2.2",
"simple-sha256": "^1.1.0",
"spark-md5": "^3.0.1",
"stream": "0.0.2"
},
"devDependencies": {
"@types/browser-or-node": "^1.3.0",
"@types/pouchdb": "^6.4.0",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@types/pouchdb-browser": "^6.1.3",
"@types/spark-md5": "^3.0.2",
"clean-webpack-plugin": "^3.0.0",
"jest": "^26.6.3",
"pouchdb-adapter-memory": "^7.2.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.20.34",
"typescript": "^4.1.5",
"webpack": "^5.36.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.7.3"
}
}