-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
{
"name": "yipt",
"version": "1.0.0-beta.4",
"description": "Yaml based pdf template engine.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": "./lib/cli.js",
"scripts": {
"test": "mocha --require source-map-support/register --require ts-node/register --recursive tests",
"clean": "rimraf {lib,tests}/**/*.{js,js.map}",
"prepublish": "npm run clean && tsc && npm run test"
},
"keywords": [
"PDF",
"Yaml",
"template",
"pdfkit"
],
"author": "Webnium (https://webnium.co.jp)",
"contributors": [
"TANAKA Koichi (https://github.com/MugeSo)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webnium/yipt"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/commander": "^2.9.0",
"@types/deep-assign": "^0.1.0",
"@types/js-yaml": "^3.5.30",
"@types/lodash": "^4.14.64",
"@types/mocha": "^2.2.41",
"@types/semver": "^5.3.31",
"@types/sinon": "^2.2.2",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"mocha": "^3.4.1",
"rimraf": "^2.6.1",
"sinon": "^2.3.0",
"sinon-chai": "^2.10.0",
"source-map-support": "^0.4.15",
"ts-node": "^3.0.4",
"tslint": "^5.3.2",
"typescript": "^2.3.3"
},
"dependencies": {
"@types/dateformat": "^1.0.1",
"@types/pdfkit": "^0.7.35",
"commander": "^2.9.0",
"dateformat": "^2.0.0",
"deep-assign": "^2.0.0",
"js-yaml": "^3.8.4",
"jsonata": "^1.2.1",
"lodash": "^4.17.4",
"pdfkit": "^0.8.0",
"require-glob": "^3.2.0",
"sb-fs": "^3.0.0",
"semver": "^5.3.0"
}
}