mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 20:38:54 -05:00
87 lines
2.0 KiB
JSON
87 lines
2.0 KiB
JSON
{
|
|
"name": "flux",
|
|
"version": "4.0.3",
|
|
"description": "An application architecture based on a unidirectional data flow",
|
|
"keywords": [
|
|
"flux",
|
|
"react",
|
|
"facebook",
|
|
"dispatcher"
|
|
],
|
|
"homepage": "https://facebook.github.io/flux/",
|
|
"bugs": "https://github.com/facebook/flux/issues",
|
|
"files": [
|
|
"LICENSE",
|
|
"PATENTS",
|
|
"README.md",
|
|
"index.js",
|
|
"lib",
|
|
"utils.js",
|
|
"dist"
|
|
],
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "gulp build",
|
|
"prepublish": "gulp publish",
|
|
"test": "NODE_ENV=test jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/flux"
|
|
},
|
|
"author": "Facebook",
|
|
"contributors": [
|
|
"Jing Chen <jingc@fb.com>",
|
|
"Bill Fisher <fisherwebdev@gmail.com>",
|
|
"Paul O'Shannessy <paul@oshannessy.com>",
|
|
"Kyle Davis <kyldvs@gmail.com>",
|
|
"Yangshun Tay <tay.yang.shun@gmail.com>"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.10",
|
|
"babel-loader": "^8.1.0",
|
|
"babel-preset-fbjs": "^3.3.0",
|
|
"del": "^2.2.0",
|
|
"gulp": "^4.0.2",
|
|
"gulp-babel": "^8.0.0",
|
|
"gulp-flatten": "^0.2.0",
|
|
"gulp-header": "1.8.2",
|
|
"gulp-rename": "^1.2.2",
|
|
"gulp-util": "^3.0.6",
|
|
"immutable": "^3.7.4",
|
|
"jest": "^15.1.1",
|
|
"object-assign": "^4.0.1",
|
|
"react": "^17.0.1",
|
|
"react-addons-test-utils": "^15.6.2",
|
|
"react-dom": "^17.0.1",
|
|
"vinyl-source-stream": "^1.0.0",
|
|
"webpack": "^1.11.0",
|
|
"webpack-stream": "^3.1.0"
|
|
},
|
|
"dependencies": {
|
|
"fbemitter": "^3.0.0",
|
|
"fbjs": "^3.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^15.0.2 || ^16.0.0 || ^17.0.0"
|
|
},
|
|
"jest": {
|
|
"modulePathIgnorePatterns": [
|
|
"/lib/",
|
|
"/node_modules/"
|
|
],
|
|
"preprocessorIgnorePatterns": [
|
|
"/node_modules/"
|
|
],
|
|
"rootDir": "./",
|
|
"scriptPreprocessor": "scripts/jest/preprocessor.js",
|
|
"setupFiles": [
|
|
"scripts/jest/environment.js"
|
|
],
|
|
"testPathDirs": [
|
|
"<rootDir>/src"
|
|
]
|
|
}
|
|
}
|