attributes-kit
Version:
React component for MSON rendering
153 lines • 4.64 kB
JSON
{
"name": "attributes-kit",
"version": "0.18.1",
"description": "React component for MSON rendering",
"engines": {
"node": "5.7.x",
"npm": "3.8.x"
},
"keywords": [
"MSON",
"Attributes",
"Apiary",
"Refract"
],
"contributors": [
{
"name": "František Hába",
"email": "frantisek@apiary.io",
"url": "http://www.frantisekhaba.com/"
},
{
"name": "Ondřej Musil",
"email": "ondra@apiary.io",
"url": "http://www.ondrejmusil.cz/"
},
{
"name": "Vincenzo Chianese",
"email": "vincenzo@apiary.io",
"url": "http://vncz.js.org/"
},
{
"name": "Daniel G. Taylor",
"email": "daniel@apiary.io",
"url": "http://programmer-art.org/"
}
],
"main": "dist/attributes-kit",
"scripts": {
"build": "npm run build:server && npm run build:client",
"build:server": "babel-node ./scripts/runServerBuild.js",
"build:client": "babel-node ./scripts/runClientBuild.js",
"generate-fixtures": "npm run build:server && babel-node ./scripts/generateFixtures",
"lint": "eslint src playground",
"lint:fix": "eslint --fix src playground",
"playground": "shell-exec 'npm run start' 'babel-node ./scripts/launchBrowser http://localhost:8080/'",
"prepublish": "not-in-install && npm run build || :",
"start": "babel-node ./scripts/devServer",
"test:unit": "mocha --compilers js:babel-core/register ./src/**/test/*.js --recursive",
"test:unit:watch": "mocha -w --compilers js:babel-core/register ./src/**/test/*.js --recursive",
"test:examples": "npm run build:server && mocha --compilers js:babel-core/register ./test/**.js --recursive",
"test:functional": "echo \"We don't have functional tests yet\"",
"test": "npm run lint && npm run test:unit && npm run test:examples && npm run test:functional",
"examples": "NODE_ENV=test shell-exec 'npm run start' 'babel-node ./scripts/launchBrowser http://localhost:8080/examples'",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/attributes-kit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apiaryio/attributes-kit/issues"
},
"homepage": "https://github.com/apiaryio/attributes-kit#readme",
"devDependencies": {
"abagnale": "^1.1.3",
"async": "^2.2.0",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.22.0",
"body-parser": "^1.14.1",
"brace": "^0.10.0",
"browser-launcher2": "0.4.6",
"chai": "3.5.0",
"classnames": "2.2.5",
"cli-table": "0.3.1",
"colors": "1.1.2",
"condition-circle": "^1.5.0",
"css-loader": "^0.28.0",
"dedent": "^0.7.0",
"drafter.js": "^2.6.5",
"eidolon": "^1.5.3",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"eslint-plugin-react": "^4.1.0",
"express": "^4.13.3",
"fbemitter": "^2.1.1",
"file-loader": "^0.11.0",
"flux": "^3.1.2",
"history": "^4.6.1",
"in-publish": "2.0.0",
"js-beautify": "^1.6.3",
"json-formatter-js": "^2.0.0",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"mocha": "^3.2.0",
"mson-zoo": "3.0.0-beta.1",
"node-noop": "1.0.0",
"radium": "^0.16.6",
"react": "^15.0.2",
"react-ace": "^4.1.6",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "3.0.0-beta.2",
"react-router": "^4.0.0",
"semantic-release": "^6.3.2",
"shell-executor": "^4.0.0",
"sift": "^3.2.7",
"style-loader": "^0.16.1",
"superagent": "^3.5.2",
"svgo": "^0.7.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-node-externals": "^1.5.4"
},
"babel": {
"presets": [
"stage-0",
"es2015",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"add-module-exports"
]
},
"eslintConfig": {
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"no-extra-semi": 0,
"no-param-reassign": 0,
"react/jsx-no-bind": 0
},
"env": {
"node": true,
"browser": true,
"mocha": true
}
},
"release": {
"verifyConditions": "condition-circle"
}
}