-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
46 lines (46 loc) · 1.59 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
{
"name": "third-party-web",
"version": "0.0.0-development",
"description": "Categorized data on third party entities on the web.",
"main": "./lib/index.js",
"scripts": {
"build:www": "cd www/ && npm install && npm run build",
"build": "node bin/convert-entities-db.js && node bin/generate-canonical-domain-csv.js && node bin/build-entity-json-files.js && node bin/generate-sql.js && generate-export-aliases",
"lint:fix": "prettier --print-width=100 --write '**/*.js'",
"start": "mkdir -p .tmp && node bin/merge-origins-with-entities.js && node bin/create-markdown.js",
"start:update-ha-data": "node ./bin/automated-update.js",
"test": "yarn build && yarn test:unit",
"test:unit": "jest 'lib/*'",
"semantic-release": "semantic-release"
},
"keywords": [
"third-party",
"third-parties"
],
"author": "Patrick Hulce <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/patrickhulce/third-party-web.git"
},
"license": "MIT",
"devDependencies": {
"@google-cloud/bigquery": "^7.9.0",
"chart.js": "^2.9.4",
"chartjs-node-canvas": "^3.2.0",
"colors": "^1.4.0",
"generate-export-aliases": "^1.1.0",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"prettier": "^1.18.2",
"prompts": "^2.4.2",
"semantic-release": "^19.0.2"
},
"config": {
"exportAliases": {
"nostats-subset": "./lib/subsets/nostats.js",
"httparchive-nostats-subset": "./lib/subsets/httparchive-nostats.js",
"httparchive-subset": "./lib/subsets/httparchive.js"
}
},
"packageManager": "[email protected]"
}