-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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
{
"name": "application-insights-fetch-monitor",
"version": "1.1.2",
"description": "Fetch API monitor for Application Insights",
"main": "dist/commonjs/index.js",
"typings": "dist/commonjs/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project tsconfig.json",
"pretest": "npm run lint",
"build:amd": "tsc --outDir dist/amd --module amd",
"build:commonjs": "tsc --outDir dist/commonjs --module commonjs",
"build:es2015": "tsc --outDir dist/es2015 --module es2015 --target es2015",
"build:native-modules": "tsc --outDir dist/native-modules --module es2015",
"build:system": "tsc --outDir dist/system --module system",
"prebuild": "rimraf dist",
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaximBalaganskiy/application-insights-fetch-monitor.git"
},
"keywords": [
"application",
"insights",
"fetch",
"api"
],
"author": "Maxim Balaganskiy",
"license": "ISC",
"bugs": {
"url": "https://github.com/MaximBalaganskiy/application-insights-fetch-monitor/issues"
},
"homepage": "https://github.com/MaximBalaganskiy/application-insights-fetch-monitor#readme",
"peerDependencies": {
"applicationinsights-js": "^1.0.18"
},
"devDependencies": {
"@types/applicationinsights-js": "^1.0.9",
"concurrently": "^4.1.0",
"rimraf": "^2.6.3",
"standard-version": "^5.0.2",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
}
}