cortina-react
Version:
Coroutine-based EDSL for building React components and applications
59 lines (58 loc) • 1.55 kB
JSON
{
"name": "cortina-react",
"version": "0.3.0",
"description": "Coroutine-based EDSL for building React components and applications",
"author": "Arthur Xavier <arthur.xavierx@gmail.com> (http://arthur-xavier.github.io/)",
"license": "MIT",
"repository": "arthurxavierx/cortina-react",
"main": "src/index.js",
"scripts": {
"test": "jest --env=jsdom --config=./jest.config.js --watch",
"test:coverage": "jest --env=jsdom --config=./jest.config.js --coverage",
"format": "prettier --write '{src,test}/**/*.js'",
"lint": "eslint --fix --config .eslintrc src/",
"precommit": "npm run format && git add . && npm run lint && npm run test:coverage"
},
"files": [
"build/",
"src/",
"LICENSE"
],
"keywords": [
"coroutine",
"generator",
"iterator",
"asynchronous",
"async",
"dsl",
"edsl",
"react",
"component"
],
"dependencies": {
"cortina": "~0.1.0"
},
"peerDependencies": {
"react": "^16.2.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-runtime": "6.26.0",
"eslint": "4.10.0",
"husky": "^0.14.3",
"jest": "20.0.4",
"prettier": "^1.11.1",
"react": "^16.3.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3"
},
"engines": {
"node": ">= 7"
}
}