-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "ffc-node",
"version": "18.0.0",
"description": "The Freshfox Core Node package",
"main": "dist/app/index.js",
"types": "dist/app/index.d.ts",
"directories": {
"test": "test",
"lib": "src"
},
"files": [
"dist/",
"src/",
"test/",
".editorconfig",
"gulpfile.js",
"tsconfig.json",
"README.md"
],
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"test": "NODE_ENV=test mocha dist/test",
"build:ts": "tsc",
"build": "./scripts/build",
"preversion": "yarn run build && yarn test",
"postversion": "git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git@github.com:freshfox/ffc-node.git"
},
"author": "Dominic Bartl",
"license": "MIT",
"homepage": "https://github.com/freshfox/ffc-node",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"cnfg": "^1.2.0",
"flat": "^4.1.0",
"handlebars": "^4.1.2",
"handlebars-layouts": "^3.1.4",
"i18n": "^0.8.3",
"inversify": "^5.0.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-env-file": "^0.1.8",
"nodemailer": "latest",
"nodemailer-smtp-transport": "latest",
"nodemailer-stub-transport": "latest",
"reflect-metadata": "^0.1.10",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^9.3.0",
"@types/nodemailer": "^6.4.0",
"@types/should": "^13.0.0",
"mocha": "^6.2.0",
"should": "^13.2.3",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}