-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@mrazvan/lib-http",
"version": "1.3.3",
"description": "Http runnable for hosting in lib-host.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MRazvan/lib-http.git"
},
"bugs": {
"url": "https://github.com/MRazvan/lib-http/issues"
},
"homepage": "https://github.com/MRazvan/lib-http#readme",
"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",
"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",
"pre:push": "npm run lint && npm run test && npm run build"
},
"author": "Marinovici Razvan",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/eslint": "^6.1.0",
"@types/inversify": "^2.0.33",
"@types/lodash": "^4.14.149",
"@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"
},
"dependencies": {
"fast-json-stringify": "^1.16.3",
"find-my-way": "^2.2.1",
"flatstr": "^1.0.12",
"inversify": "^5.0.1",
"lib-host": "^1.0.1",
"lib-intercept": "^1.2.0",
"lib-reflect": "^1.2.2",
"lodash": "^4.17.15",
"reflect-metadata": "^0.1.13"
},
"nyc": {
"exclude": [
"index.ts",
"tests"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"files": [
"dist/**/{*.js,*.d.ts}"
]
}