-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "ipp-easyprint",
"version": "3.0.5",
"description": "NPM package that allows easy printing via IPP.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"link": "npm run build && npm link",
"lint": "tslint -p tsconfig.json",
"lint-fix": "tslint -p tsconfig.json --fix",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"start": "node dist/index.js",
"test": "jest --config jestconfig.json",
"test-coverage": "jest --config jestconfig.json --coverage",
"version": "npm run format && git add -A src"
},
"author": "Filip Stenbacka",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.9",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@sealsystems/ipp": "^2.7.7"
},
"repository": {
"type": "git",
"url": "[email protected]:filiptypjeu/npm-easyprint.git"
},
"keywords": [
"ipp",
"printer",
"print"
],
"files": [
"dist",
"typings"
],
"homepage": "https://github.com/filiptypjeu/npm-ipp-easyprint"
}