-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "@rimiti/invoice-it",
"version": "3.5.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": {
"html-pdf": "3.0.1",
"i18n-factory": "0.0.2",
"json-override": "0.2.0",
"moment": "2.29.4",
"pug": "3.0.2"
},
"devDependencies": {
"@babel/cli": "7.21.5",
"@babel/core": "7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "7.21.5",
"@babel/register": "7.21.0",
"babel-eslint": "10.1.0",
"babel-jest": "29.5.0",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"jest": "29.5.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/**/*.js"
]
}
}