reflex/package.json

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

2012-10-21 02:51:48 +04:00
{
2012-10-21 03:14:40 +04:00
"name": "reflex",
"id": "reflex",
2016-05-19 00:48:56 +03:00
"version": "0.4.1",
2012-10-21 02:51:48 +04:00
"description": "Functional reactive UI library",
2012-10-22 10:27:00 +04:00
"keywords": [
"reflex",
"reactive",
"functional",
"UI"
],
2012-10-21 02:51:48 +04:00
"author": "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)",
2012-10-21 03:14:40 +04:00
"homepage": "https://github.com/Gozala/reflex",
2017-06-22 03:41:59 +03:00
"main": "./index.js",
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:04:55 +03:00
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-preset-flow": "6.23.0",
2017-06-22 03:41:59 +03:00
"babel-register": "6.24.1",
2017-06-26 21:04:55 +03:00
"flow-bin": "0.48.0",
2017-06-22 03:41:59 +03:00
"flow-copy-source": "1.1.0",
2015-05-23 12:46:04 +03:00
"tap": "1.1.0",
"tape": "4.4.0"
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",
"test:tape": "tape -r babel-register test/**/*.js",
"test:flow": "flow check",
"build:clear": "rm -rf ./*.js && rm -rf ./*.js.flow",
"build:types": "flow-copy-source -v src .",
"build:node": "babel --out-dir . src",
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:04:55 +03:00
"start": "babel --watch --out-dir . src"
2015-05-23 12:46:04 +03:00
},
2012-10-21 02:51:48 +04:00
"repository": {
"type": "git",
2012-10-21 03:14:40 +04:00
"url": "https://github.com/Gozala/reflex.git",
"web": "https://github.com/Gozala/reflex"
2012-10-21 02:51:48 +04:00
},
"bugs": {
2012-10-21 03:14:40 +04:00
"url": "http://github.com/Gozala/reflex/issues/"
2012-10-21 02:51:48 +04:00
},
"license": "MIT"
2017-06-22 03:41:59 +03:00
}