Files
graphfx/package.json
2023-01-24 12:14:46 +01:00

42 lines
1023 B
JSON

{
"name": "graphfx",
"version": "0.3.1",
"description": "Graph image processing pipeline",
"main": "src/index.ts",
"scripts": {
"dev": "webpack-dev-server --quiet --progress --watch --mode development",
"build": "webpack --mode production --quiet --progress",
"ts-check": "tsc --noEmit --project tsconfig.json",
"test": "jest"
},
"keywords": [
"image processing",
"image",
"filters"
],
"author": "standa.fifik@gmail.com",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.5",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.0",
"babel-jest": "^24.6.0",
"babel-polyfill": "^6.26.0",
"@types/lodash": "^4.14.191",
"jest": "^29.2.2",
"typescript": "^3.7.3"
},
"dependencies": {
"@types/css-font-loading-module": "0.0.2",
"@types/uuid": "^3.4.6",
"uuid": "^3.3.3",
"lodash": "^4.17.21"
},
"jest": {
"setupFiles": [
"<rootDir>/.jest.setup.js"
]
}
}