-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
57 lines (57 loc) Β· 1.79 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
{
"name": "dashflare",
"version": "1.0.0",
"description": "Cloudflare worker TypeScript template",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --require transpiled/test/test/_setup.js --recursive transpiled/test",
"transpile": "tsc --project ./test"
},
"author": "Jorge Luis Betancourt Gonzalez <[email protected]>",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"@friends-of-js/yaml-loader": "^1.0.4",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/logfmt": "^1.2.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.6.2",
"chai": "^4.2.0",
"fetch-mock": "^9.10.7",
"mocha": "^10.1.0",
"node-fetch": "^2.6.7",
"prettier": "2.0.5",
"request": ">=2.68.0",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.19",
"ts-loader": "^7.0.5",
"typescript": "^3.9.7",
"webpack": "^4",
"webpack-cli": "^3"
},
"dependencies": {
"@cliqz/url-parser": "^1.1.3",
"@types/country-list": "^2.1.0",
"@types/js-yaml": "^3.12.5",
"@types/latlon-geohash": "^2.0.0",
"@types/ngeohash": "^0.6.2",
"@types/ua-parser-js": "^0.7.33",
"country-list": "^2.2.0",
"file-type": "^16.5.4",
"inbound": "0.0.6",
"latlon-geohash": "^2.0.0",
"logfmt": "^1.3.2",
"ngeohash": "^0.6.3",
"remove": "^0.1.5",
"siphash": "^1.1.0",
"tldextract": "0.0.5",
"ua-parser-js": "^0.7.21"
}
}