-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.67 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
{
"name": "es-apm-decorators",
"version": "1.0.0",
"description": "Decorators for using Elasticsearch APM in Typescript",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"clean": "rm -rf lib",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" \"tests/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Wizcorp/es-apm-decorators.git"
},
"keywords": [
"Elasticsearch",
"APM",
"Typescript",
"Decorator"
],
"author": "Brandon Fulljames",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wizcorp/es-apm-decorators/issues"
},
"homepage": "https://github.com/Wizcorp/es-apm-decorators#readme",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"husky": "^3.0.5",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
}
}