reflex/package.json

42 строки
1.4 KiB
JSON
Исходник Обычный вид История

2012-10-21 02:51:48 +04:00
{
2012-10-21 03:14:40 +04:00
"name": "reflex",
2017-07-04 00:41:48 +03:00
"version": "1.1.0",
2012-10-21 02:51:48 +04:00
"description": "Functional reactive UI library",
2017-07-04 00:41:48 +03:00
"keywords": ["reflex", "reactive", "functional", "UI"],
2012-10-21 02:51:48 +04:00
"author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
2017-06-26 21:17:58 +03:00
"main": "reflex",
2015-05-23 12:46:04 +03:00
"devDependencies": {
2017-06-22 03:41:59 +03:00
"babel-cli": "6.24.1",
2017-06-26 21:17:58 +03:00
"babel-preset-flow-node": "^1.0.2",
2017-06-22 03:41:59 +03:00
"babel-register": "6.24.1",
2017-06-26 21:17:58 +03:00
"blue-tape": "^1.0.0",
"documentation": "^4.0.0-rc.1",
"flow-bin": "^0.49.1",
"flow-copy-source": "^1.2.0",
2017-06-26 21:17:58 +03:00
"husky": "^0.14.0",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4"
2015-10-16 10:45:34 +03:00
},
2015-05-23 12:46:04 +03:00
"scripts": {
2017-06-22 03:41:59 +03:00
"test": "npm run test:flow && npm run test:tape",
2017-06-26 21:17:58 +03:00
"test:tape": "blue-tape -r babel-register test/**/*.js",
2017-06-22 03:41:59 +03:00
"test:flow": "flow check",
2017-06-26 21:17:58 +03:00
"build:clear": "rm -rf ./*.js && rm -rf ./*.js.flow && rm -rf reflex",
2017-06-22 03:41:59 +03:00
"build:types": "flow-copy-source -v src .",
"build:node": "babel --out-dir . src",
2017-06-26 21:17:58 +03:00
"build:api": "documentation readme --section=API src/reflex.js",
"build:docs": "documentation build --document-exported src/** -f html --o docs",
2017-06-26 21:04:55 +03:00
"build": "npm run build:node && npm run build:types",
2017-06-22 03:41:59 +03:00
"prepublish": "npm run build && npm test",
2017-06-26 21:17:58 +03:00
"precommit": "lint-staged"
2015-05-23 12:46:04 +03:00
},
2017-06-26 21:17:58 +03:00
"lint-staged": {
2017-07-04 00:41:48 +03:00
"*.js": ["prettier --parser flow --no-semi --write", "git add"]
2012-10-21 02:51:48 +04:00
},
2017-06-26 21:17:58 +03:00
"repository": "https://github.com/mozilla/reflex",
"license": "MIT",
"dependencies": {
"reflex-driver": "^1.0.2"
}
}