-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.11 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
{
"name": "simple-facture",
"version": "0.2.0",
"description": "Make french invoices as pdf with all legal requirements",
"keywords": [
"invoice",
"facture",
"france",
"pdf",
"generator"
],
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"test": "jest",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"publish": "npm publish"
},
"files": [
"src/**",
"fonts/**",
"bin/**"
],
"author": "Elias Boukamza<ezain2t@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eboukamza/simple-facture.git"
},
"bugs": {
"url": "https://github.com/eboukamza/simple-facture/issues"
},
"homepage": "https://github.com/eboukamza/simple-facture#readme",
"dependencies": {
"intl": "^1.2.5",
"pdfmake": "^0.1.40"
},
"devDependencies": {
"coveralls": "^3.0.3",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"bin": {
"simple-facture": "./bin/simple-facture"
}
}