forked from kube/node-pdflatex
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "node-pdflatex",
"version": "0.3.0",
"description": "PDFLaTeX wrapper for Node",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "kube",
"license": "MIT",
"keywords": ["tex", "latex", "pdflatex", "pdf"],
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "tsc --watch",
"prepublish": "jest && tsc"
},
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/node": "^8.0.46",
"@types/tmp": "0.0.33",
"jest": "^21.2.1",
"prettier": "^1.7.4",
"ts-jest": "^21.1.3",
"typescript": "^2.5.3"
},
"dependencies": {
"monolite": "^0.4.5",
"tmp": "0.0.33"
},
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true,
"tsConfigFile": "src/__tests__/tsconfig.json"
}
},
"transform": {
".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/(__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleDirectories": ["node_modules", "src"],
"moduleFileExtensions": ["ts", "js"]
}
}