forked from rimiti/invoice-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "@rimiti/invoice-it",
"version": "3.4.0",
"description": "Order and invoice generator",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf coverage dist tmp invoice.pdf invoice.html order.pdf orderAdd.pdf order.html invoiceAdd.pdf",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "npm run build",
"build": "babel src -d dist --copy-files --source-maps inline",
"build:watch": "babel src -d dist --watch --copy-files --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rimiti/invoice-it.git"
},
"keywords": [
"node",
"order",
"invoice",
"html",
"pdf",
"generator"
],
"author": {
"name": "Dimitri DO BAIRRO",
"email": "dimitri.dobairro@dimsolution.com",
"url": "dimsolution.com"
},
"bugs": {
"url": "https://github.com/rimiti/invoice-it/issues"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/rimiti/invoice-it#readme",
"dependencies": {
"decimal.js": "^10.3.1",
"i18n-factory": "0.0.2",
"json-override": "^0.2.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"pug": "^2.0.3"
},
"peerDependencies": {
"html-pdf": "git+https://github.com/flattro/node-html-pdf.git#master"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"babel-jest": "~24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"jest": "^24.7.1"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.js"
]
}
}