-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.3 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
{
"name": "nodejs-processor",
"version": "0.2.0",
"description": "Routr Processor Template",
"main": "dist/src/index.js",
"homepage": "https://github.com/fonoster/nodejs-processor#readme",
"author": "Fonoster Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/fonoster/nodejs-processor/issues"
},
"scripts": {
"start": "cross-env NODE_ENV=dev nodemon src/index.ts",
"test": "cross-env NODE_ENV=dev nyc --reporter=lcov mocha test/*.test.ts --exit",
"prebuild": "rimraf ./dist tsconfig.tsbuildinfo",
"build": "tsc -b tsconfig.json",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"gen:docs": "node .scripts/docs-generator.js && cp docs/service.md",
"prepare": "husky install"
},
"bin": {
"runner": "./dist/src/index.js"
},
"nodemonConfig": {
"watch": [
"./src/"
],
"ext": "ts",
"exec": "ts-node",
"ignore": "**/*.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fonoster/nodejs-processor.git"
},
"keywords": [
"template"
],
"directories": {
"src": "src",
"test": "test"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@fonoster/logger": "^0.3.24",
"@routr/location": "^2.1.7",
"@routr/processor": "^2.1.7",
"fp-ts": "^2.16.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.3.1",
"esm": "^3.2.25",
"husky": "^8.0.1",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^10.0.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.7.0",
"typescript": "^4.1.5"
}
}