-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.59 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
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
{
"name": "cvrender",
"version": "0.1.1",
"description": "Command line tool to render resumes.",
"repository": {
"type": "git",
"url": "git+https://github.com/cogneco/cvrender"
},
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cogneco/cvrender/issues"
},
"homepage": "https://github.com/cogneco/cvrender#readme",
"bin": {
"cvrender": "dist/index.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "tslint --config tslint.json --project .",
"build": "tsc -p .",
"pretest": "npm run build",
"test": "jest",
"test:watch": "watch jest",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"clean": "rm -rf dist node_modules coverage"
},
"dependencies": {
"async": "^3.1.0",
"inline-html": "^0.2.4",
"node": "13.6.0",
"officegen": "^0.6.3"
},
"devDependencies": {
"tslint": "^5.20.1",
"typescript": "^3.7.4",
"@types/async": "^3.0.3",
"@types/node": "^13.1.7",
"@types/jest": "^24.9.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"jest": "^24",
"ts-jest": "^24.3.0",
"watch": "^1.0.2"
}
}