40 lines
963 B
JSON
40 lines
963 B
JSON
{
|
|
"name": "graphfx",
|
|
"version": "0.2.0",
|
|
"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",
|
|
"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"
|
|
},
|
|
"jest": {
|
|
"setupFiles": [
|
|
"<rootDir>/.jest.setup.js"
|
|
]
|
|
}
|
|
}
|