-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "@ringpublishing/accelerator-images",
"version": "1.0.3",
"description": "Client library for generating Ring Accelerator image transformation URLs",
"license": "MIT",
"repository": "ringpublishing/accelerator-images-node",
"homepage": "https://developer.ringpublishing.com/docs/Accelerator/topics/images/index.html",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": "^18||^20"
},
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs/ --readme none --plugin typedoc-plugin-markdown src/index.ts",
"lint": "npm run lint:js",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx src/ tests/",
"lint:js:fix": "npm run lint:js -- --fix",
"prebuild": "rimraf lib",
"prepare": "npm run build",
"test": "jest --ci --coverage --verbose"
},
"dependencies": {
"crypto-js": "^4.0.0",
"msgpackr": "<1.10.0"
},
"devDependencies": {
"@ringieraxelspringer/eslint-config": "^23.0.0",
"@ringieraxelspringer/tsconfig": "^6.0.0",
"@types/crypto-js": "^4.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "^3.0.0",
"typescript": "~5.1.0"
},
"eslintConfig": {
"extends": "@ringieraxelspringer/eslint-config",
"env": {
"jest": true
}
},
"jest": {
"preset": "ts-jest"
}
}