-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "node-pdftocairo",
"version": "1.2.0",
"description": "node.js wrapper for pdftocairo",
"main": "lib/index.js",
"files": [
"lib/*"
],
"scripts": {
"build": "rm -rf lib && tsc",
"test": "jest --config ./jest.config.json --coverage --env=node",
"lint": "eslint --ext .js,.ts ./src ./test",
"codecov": "codecov -f coverage/*.json"
},
"author": "[email protected]",
"repository": "github:CodeDaraW/node-pdftocairo",
"homepage": "https://github.com/CodeDaraW/node-pdftocairo",
"bugs": {
"url": "https://github.com/CodeDaraW/node-pdftocairo/issues"
},
"os": [
"darwin",
"linux"
],
"license": "MIT",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.12.0",
"codecov": "^3.5.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^10.1.0",
"typescript": "^3.5.2"
},
"dependencies": {
"glob": "^7.1.4",
"rimraf": "^4.3.1"
}
}