-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.54 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@eyedea-sockets/pdf",
"version": "0.1.4",
"public": true,
"description": "Syncano Socket for generating PDF from HTML",
"author": "EYEDEA",
"repository": "https://github.com/eyedea-io/syncano-socket-pdf.git",
"license": "MIT",
"keywords": [
"serverless",
"syncano",
"socket",
"pdf",
"html2pdf",
"phantomjs"
],
"peerDependencies": {
"@syncano/cli": "0.13.0-alpha.e625a06e"
},
"dependencies": {
"@eyedea/syncano": "0.2.0",
"phantom-html2pdf": "^4.0.1"
},
"scripts": {
"build": "npm run build:src && npm run build:env",
"build:src": "sh ./bin/compile",
"build:env": "sh ./bin/compile-env",
"test": "npm-run-all --parallel test:lint test:audit test:unit",
"codecov": "codecov",
"test:unit": "NODE_ENV=test jest --forceExit --detectOpenHandles test/unit/.*\\.test\\.js",
"test:e2e": "NODE_ENV=test jest test/e2e/.*\\.test\\.js",
"test:audit": "npm audit",
"test:lint": "tslint --fix -c tslint.json ./src/**/*.ts"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-typescript": "^7.0.0-beta.42",
"@syncano/test": "0.13.0-alpha.e625a06e",
"@syncano/test-tools": "0.13.0-alpha.e625a06e",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"codecov": "^3.0.4",
"jest": "^23.4.2",
"npm-run-all": "^4.1.1",
"sinon": "^5.1.0",
"ts-jest": "23.0.1",
"tslint": "5.11.0",
"tslint-eslint-rules": "5.3.1",
"tslint-react": "3.6.0",
"typescript": "^2.7.2"
},
"jest": {
"testEnvironment": "node",
"globals": {
"ts-jest": {
"useBabelrc": false,
"ignoreCoverageForAllDecorators": true
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**."
],
"coveragePathIgnorePatterns": [
"node_modules",
".dist/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
},
"babel": {
"sourceMaps": "inline",
"plugins": [
"transform-class-properties",
"istanbul"
],
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
}
}