-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "nstarter-apm",
"version": "0.4.0",
"description": "nstarter APM 采集组件",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jiandaoyun/nstarter.git",
"directory": "packages/plugin-apm"
},
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.json && tsc --build tsconfig.esm.json",
"test": "nyc --nycrc-path ../../.nycrc mocha --config ../../.mocharc.yml --require ts-node/register,test/setup.ts",
"eslint": "eslint --ext .js,.ts --config ../../.eslintrc.js ./src",
"eslint:html": "npm run eslint -- --output-file ./lint/eslint.html --format html",
"clean": "rimraf dist && rimraf lint && rimraf coverage && rimraf .nyc_output",
"upload": "npm-publish ./"
},
"exports": {
".": {
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"development": "./src/index.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"elastic-apm-node": "^4.7.2"
},
"peerDependencies": {
"nstarter-core": ">=1.2.0 <2.0.0"
},
"devDependencies": {
"nstarter-core": "*"
}
}