-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.48 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
74
75
76
77
78
79
80
{
"private": true,
"name": "cloudflare-redirector-worker",
"version": "1.0.0",
"description": "Simple redirector tool. Integrated with Storyblok.",
"main": "dist/index.js",
"author": "vabatta",
"license": "CC-BY-ND-4.0",
"scripts": {
"test": "jest",
"lint": "eslint --format=pretty '**/*.{ts,js}'",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"start": "rollup -c -w",
"build": "rollup -c",
"sync": "node utils/synchronize",
"publish": "npm run sync && npm run build && wrangler publish",
"publish:staging": "cross-env DOTENV_CONFIG_PATH=.env.staging ENVIRONMENT=staging NODE_ENV=production npm run publish -- --env staging",
"publish:production": "cross-env DOTENV_CONFIG_PATH=.env.production ENVIRONMENT=production NODE_ENV=production npm run publish -- --env production"
},
"engines": {
"node": "10.x",
"npm": "6.x"
},
"browserslist": [
"node 10"
],
"homepage": "https://github.com/vabatta/cloudflare-redirector-worker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vabatta/cloudflare-redirector-worker.git"
},
"bugs": {
"url": "https://github.com/vabatta/cloudflare-redirector-worker/issues"
},
"devDependencies": {
"@changesets/cli": "^2.8.0",
"@cloudflare/workers-types": "^1.0.9",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-sucrase": "^3.0.2",
"@rollup/plugin-typescript": "^4.1.2",
"@types/jest": "^25.2.3",
"@types/node": "^10.17.24",
"@types/service-worker-mock": "^2.0.1",
"@types/superagent": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-xo": "^0.29.1",
"eslint-config-xo-typescript": "^0.26.0",
"eslint-formatter-pretty": "^3.0.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-cucumber": "^2.0.11",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.2.7",
"listr": "^0.14.3",
"prettier": "^1.18.2",
"rollup": "^1.32.1",
"rollup-plugin-analyzer": "^3.2.3",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-terser": "^5.3.0",
"service-worker-mock": "^2.0.5",
"superagent": "^5.2.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}