This repository was archived by the owner on Aug 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "ts-framework-notification",
"version": "1.2.1",
"description": "A minimalistic web framework for TS",
"author": "Luis Brito <luis@devnup.com>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://gitlab.devnup.com/npm/ts-framework-notification.git"
},
"scripts": {
"build": "npm run -s clean && ./node_modules/.bin/tsc && npm run -s assets",
"clean": "./node_modules/.bin/rimraf ./dist/",
"assets": "./node_modules/.bin/cpx \"lib/**/*.{html,ejs,css,png,jpg,jpeg}\" dist",
"test": "./node_modules/.bin/jest --config jest.json",
"coveralls": "((cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js) || true)",
"docs": "./scripts/docs.sh",
"precommit": "npm test"
},
"dependencies": {
"@types/email-templates": "^3.1.0",
"@types/nodemailer": "^4.3.1",
"cpx": "^1.5.0",
"ejs": "^2.5.7",
"email-templates": "^3.1.7",
"firebase-admin": "^5.7.0",
"nodemailer": "^4.4.0",
"rimraf": "^2.6.2",
"ts-framework": "git+http://github.com/devnup/ts-framework.git#1.0.0-rc.1"
},
"devDependencies": {
"@types/jest": "^21.1.2",
"coveralls": "^3.0.0",
"devnup-typedoc-theme": "git+https://gitlab.devnup.com/npm/devnup-typedoc-theme.git#master",
"hat": "^0.0.3",
"husky": "^0.14.3",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"sinon": "^4.1.3",
"ts-jest": "^21.2.3",
"ts-lint": "^4.5.1",
"ts-node": "^3.3.0",
"typedoc": "^0.11.1",
"typescript": "^2.5.3"
}
}