-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "degas",
"version": "1.3.1",
"description": "Functions for image file reading, manipulation and validation, in TypeScript",
"author": "Equalogic Ltd",
"license": "UNLICENSED",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/equalogic/degas.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "rimraf test/.results && mkdirp test/.results && jest --ci --runInBand",
"barrels:generate": "barrelsby --config barrelsby.json",
"postversion": "npm run postbuild",
"release": "np"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"js-yaml": "^4.0.0",
"sharp": "^0.33.0",
"ts-class-initializable": "^1.0.2"
},
"devDependencies": {
"@types/hapi__joi": "17.1.15",
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "18.19.64",
"@types/sharp": "0.31.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"barrelsby": "2.8.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"jest": "29.7.0",
"mkdirp": "3.0.1",
"np": "10.0.7",
"prettier": "3.2.2",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"main": "index.js",
"types": "index.d.ts"
}