reflex/package.json

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

2012-10-21 02:51:48 +04:00
{
2012-10-21 03:14:40 +04:00
"name": "reflex",
"id": "reflex",
"version": "0.3.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",
2015-05-23 12:46:04 +03:00
"main": "./lib/index.js",
"devDependencies": {
"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-04-19 21:17:22 +03:00
"flow-bin": "0.23.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": {
"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",
"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
},
"license": "MIT"
2012-10-21 02:51:48 +04:00
}