-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "js-apm",
"version": "0.0.7",
"description": "Web app performance sampler",
"main": "dist/Apm.js",
"types": "dist/Apm.d.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "npm run lint && npm run build-ts && webpack",
"lint": "eslint . --ext .ts",
"build-ts": "tsc"
},
"homepage": "https://github.com/the-toster/js-apm",
"bugs": {
"url": "https://github.com/the-toster/js-apm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/the-toster/js-apm.git"
},
"author": "the-toster",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"expose-loader": "^1.0.0",
"jest": "^26.1.0",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"network-information-types": "^0.1.0"
}
}