зеркало из https://github.com/mozilla/reflex.git
42 строки
1.4 KiB
JSON
42 строки
1.4 KiB
JSON
{
|
|
"name": "reflex",
|
|
"version": "1.1.0",
|
|
"description": "Functional reactive UI library",
|
|
"keywords": ["reflex", "reactive", "functional", "UI"],
|
|
"author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
|
|
"main": "reflex",
|
|
"devDependencies": {
|
|
"babel-cli": "6.24.1",
|
|
"babel-preset-flow-node": "^1.0.2",
|
|
"babel-register": "6.24.1",
|
|
"blue-tape": "^1.0.0",
|
|
"documentation": "^4.0.0-rc.1",
|
|
"flow-bin": "^0.49.1",
|
|
"flow-copy-source": "^1.2.0",
|
|
"husky": "^0.14.0",
|
|
"lint-staged": "^4.0.0",
|
|
"prettier": "^1.4.4"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run test:flow && npm run test:tape",
|
|
"test:tape": "blue-tape -r babel-register test/**/*.js",
|
|
"test:flow": "flow check",
|
|
"build:clear": "rm -rf ./*.js && rm -rf ./*.js.flow && rm -rf reflex",
|
|
"build:types": "flow-copy-source -v src .",
|
|
"build:node": "babel --out-dir . src",
|
|
"build:api": "documentation readme --section=API src/reflex.js",
|
|
"build:docs": "documentation build --document-exported src/** -f html --o docs",
|
|
"build": "npm run build:node && npm run build:types",
|
|
"prepublish": "npm run build && npm test",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": ["prettier --parser flow --no-semi --write", "git add"]
|
|
},
|
|
"repository": "https://github.com/mozilla/reflex",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"reflex-driver": "^1.0.2"
|
|
}
|
|
}
|