2012-10-21 02:51:48 +04:00
|
|
|
{
|
2012-10-21 03:14:40 +04:00
|
|
|
"name": "reflex",
|
|
|
|
"id": "reflex",
|
2016-05-09 20:21:06 +03:00
|
|
|
"version": "0.4.0",
|
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",
|
2015-05-23 12:46:04 +03:00
|
|
|
"main": "./lib/index.js",
|
|
|
|
"devDependencies": {
|
2016-03-09 11:37:27 +03:00
|
|
|
"babel-cli": "6.6.5",
|
|
|
|
"babel-plugin-remove-comments": "2.0.0",
|
|
|
|
"babel-plugin-syntax-flow": "6.3.13",
|
|
|
|
"babel-plugin-transform-es2015-modules-umd": "6.4.3",
|
|
|
|
"babel-plugin-transform-flow-strip-types": "6.4.0",
|
|
|
|
"babel-preset-es2015": "6.3.13",
|
|
|
|
"babel-register": "6.4.3",
|
2016-05-05 23:25:58 +03:00
|
|
|
"flow-bin": "0.24.1",
|
2015-05-23 12:46:04 +03:00
|
|
|
"tap": "1.1.0",
|
2016-03-09 11:37:27 +03:00
|
|
|
"tape": "4.4.0"
|
2015-10-16 10:45:34 +03:00
|
|
|
},
|
2015-05-23 12:46:04 +03:00
|
|
|
"scripts": {
|
2016-03-09 11:37:27 +03:00
|
|
|
"test": "npm run flow && npm run tape",
|
|
|
|
"tape": "tape -r babel-register test/**/*.js",
|
|
|
|
"flow": "flow check",
|
|
|
|
"start": "babel --watch --out-dir ./lib ./src",
|
|
|
|
"build-node": "babel --out-dir ./lib ./src && cp ./src/*.flow ./lib",
|
2016-03-19 10:33:34 +03:00
|
|
|
"build-browser": "mkdir -p dist && babel --out-file ./dist/reflex.js --plugins 'transform-es2015-modules-umd' ./src",
|
2015-10-16 10:45:34 +03:00
|
|
|
"build": "npm run build-node && npm run build-browser",
|
2016-03-09 11:37:27 +03:00
|
|
|
"prepublish": "npm run build && npm run flow"
|
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
|
|
|
},
|
2016-03-09 11:37:27 +03:00
|
|
|
"license": "MIT"
|
2012-10-21 02:51:48 +04:00
|
|
|
}
|