-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 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
{
"name": "applicationinsights-cloudflareworkers",
"version": "0.3.1",
"description": "",
"main": "./dist/cjs/src/index.js",
"module": "./dist/mjs/src/index.mjs",
"types": "./dist/cjs/src/index.d.ts",
"scripts": {
"compile": "npm run compile-cjs && npm run compile-mjs",
"compile-cjs": "tsc",
"compile-mjs": "tsc --outDir dist/mjs -m ESNext && node node_modules/renamer/bin/cli.js --find \"/\\.js/\" --replace \".mjs\" \"dist/mjs/**\"",
"clean": "rd /s /q dist || (exit 0) || rm -rf dist",
"prepack": "npm run clean && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sazzy4o/applicationinsights-cloudflareworkers.git"
},
"keywords": [
"cloudflareworkers",
"applicationinsights",
"cloudflare"
],
"author": "Spencer von der Ohe",
"license": "MIT",
"bugs": {
"url": "https://github.com/sazzy4o/applicationinsights-cloudflareworkers/issues"
},
"homepage": "https://github.com/sazzy4o/applicationinsights-cloudflareworkers#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "2.15.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.18.2",
"node-fetch": "^2.6.0",
"renamer": "^2.0.1",
"testyts": "^1.0.1",
"tslint": "^5.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^3.9.5"
}
}