-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "@aptoma/aoi-smart-crop",
"repository": {
"type": "git",
"url": "[email protected]:aptoma/aoi-smart-crop.git"
},
"version": "1.0.2",
"description": "Helper library for doing smart crops of images based on area of interest data",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib",
"prerelease": "npm run lint && npm run test",
"release": "npm run prerelease && release-it -i patch",
"release:minor": "npm run prerelease && release-it -i minor",
"release:major": "npm run prerelease && release-it -i major",
"test": "mocha lib/**/*.test.js",
"watch": "mocha --watch 'lib/**/*.js' --timeout 500"
},
"files": [
"README.md",
"lib"
],
"author": "Gunnar Lium <[email protected]>",
"license": "MIT",
"dependencies": {
"qs": "^6.12.1"
},
"devDependencies": {
"@aptoma/eslint-config": "^8.0.0",
"auto-changelog": "^2.4.0",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"release-it": "^17.2.1"
},
"engines": {
"node": ">=18"
},
"eslintConfig": {
"extends": "@aptoma/eslint-config",
"env": {
"node": true,
"mocha": true,
"es6": true
}
}
}