-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.79 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.79 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "lib-intercept",
"version": "1.2.1",
"description": "Library for chaining method executions together and providing a context of execution.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc:w": "tsc -w",
"build": "tsc",
"start": "node ./dist/index.js --dev",
"start:debug": "node --inspect-brk=9229 ./dist/index.js --dev",
"test": "node ./node_modules/mocha/bin/mocha -r ./node_modules/ts-node/register/index.js ./tests/**/*.spec.ts --exit",
"test:debug": "node ./node_modules/mocha/bin/mocha --inspect-brk -r ./node_modules/ts-node/register/index.js ./tests/**/*.spec.ts --exit",
"coverage:test": "node ./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text --reporter=lcov npm run test",
"tc:test": "node ./node_modules/mocha/bin/mocha --reporter mocha-teamcity-reporter -r ./node_modules/ts-node/register/index.js ./tests/**/*.spec.ts --exit",
"nyc:test": "node ./node_modules/nyc/bin/nyc.js --reporter=html --reporter=teamcity npm run tc:test",
"lint": "node ./node_modules/eslint/bin/eslint.js ./src/**/*.ts ./index.ts",
"lint:fix": "node ./node_modules/eslint/bin/eslint.js --fix ./src/**/*.ts ./index.ts",
"statistics": "node ./node_modules/sloc/bin/sloc --defails --exclude spec.ts ./src"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MRazvan/lib-intercept.git"
},
"keywords": [],
"author": "Marinovici Razvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/MRazvan/lib-intercept/issues"
},
"homepage": "https://github.com/MRazvan/lib-intercept#readme",
"dependencies": {
"inversify": "^5.0.1",
"lib-reflect": "^1.2.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/inversify": "^2.0.33",
"@types/lodash": "^4.14.149",
"@types/chai": "^4.2.0",
"@types/eslint": "^6.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/reflect-metadata": "^0.0.5",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^6.2.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"mocha-sinon": "^2.1.0",
"mocha-teamcity-reporter": "^3.0.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.4.1",
"sloc": "^0.2.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"nyc": {
"exclude": [
"index.ts",
"tests"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"files": [
"dist/**/{*.js,*.d.ts}"
]
}