unveil
Version:
A React-based Reactive Presentation Framework
90 lines (89 loc) • 2.32 kB
JSON
{
"name": "unveil",
"description": "A React-based Reactive Presentation Framework",
"keywords": [
"presentation",
"slides",
"unveil",
"reveal",
"present",
"react",
"reactive",
"rx"
],
"files": [
"lib"
],
"author": "Leandro Ostera <leandro@ostera.io>",
"contributors": [
{
"name": "Iris Schaffer",
"email": "irisschaffer@gmx.net"
}
],
"repository": "https://github.com/ostera/unveil.js",
"bugs": {
"url": "https://github.com/ostera/unveil.js/issues"
},
"homepage": "https://github.com/ostera/unveil.js",
"license": "MIT",
"version": "0.1.13",
"main": "lib/index.js",
"dependencies": {
"babel-plugin-transform-export-extensions": "^6.4.0",
"history": "~1.17.0",
"immutable": "~3.7.6",
"marked": "~0.3.5",
"normalize.css": "^3.0.3",
"react": "~0.15.0-alpha.1",
"react-addons-css-transition-group": "~0.15.0-alpha.1",
"react-dom": "~0.15.0-alpha.1",
"rx-history": "~1.0.4",
"rxjs": "~5.0.0-beta.1"
},
"devDependencies": {
"react-addons-test-utils": "~0.15.0-alpha.1",
"babel-plugin-transform-runtime": "~6.4.3",
"babel-preset-es2015": "~6.3.13",
"babel-preset-react": "~6.3.13",
"babelify": "~7.2.0",
"browserify": "~6.2.0",
"envify": "~3.0.0",
"jest-cli": "^0.8.2",
"babel-jest": "~6.0.1",
"babel-cli": "~6.0.0",
"reactify": "~1.1.1",
"uglify-js": "~2.4.15",
"watchify": "~2.1.1"
},
"scripts": {
"preversion": "npm run build",
"start": "watchify -t [envify --NODE_ENV local] -o build/bundle.js -v -d src/index.js & sass -w ./styles:./build",
"build": "./node_modules/babel-cli/bin/babel.js src -d lib --source-maps inline; sass --update ./styles:./lib/css",
"test": "jest"
},
"browserify": {
"transform": [
"babelify",
"reactify",
"envify"
]
},
"jest": {
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules",
"fixtures"
],
"testPathIgnorePatterns": [
"fixtures"
],
"modulePathIgnorePatterns": [
"node_modules",
"build",
"styles",
"<rootDir>/lib"
]
}
}