mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
72 lines
1.6 KiB
JSON
72 lines
1.6 KiB
JSON
{
|
|
"name": "hyperterm-web",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"dependencies": {
|
|
"classnames": "2.2.5",
|
|
"hterm-umd": "1.0.1",
|
|
"json-loader": "0.5.4",
|
|
"mousetrap": "1.6.0",
|
|
"ms": "0.7.1",
|
|
"react": "15.1.0",
|
|
"react-addons-shallow-compare": "15.1.0",
|
|
"react-dom": "15.1.0",
|
|
"semver-compare": "1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "2.13.1",
|
|
"eslint-config-standard": "5.3.1",
|
|
"babel-eslint": "6.1.0",
|
|
"eslint-plugin-react": "5.2.2",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "6.10.3",
|
|
"babel-cli": "6.10.1",
|
|
"babel-loader": "6.2.4",
|
|
"babel-core": "6.10.4",
|
|
"style-loader": "0.13.1",
|
|
"css-loader": "0.23.1",
|
|
"eslint-plugin-standard": "1.3.2",
|
|
"eslint-plugin-promise": "1.3.2",
|
|
"webpack": "1.13.1",
|
|
"babel-plugin-transform-react-jsx": "6.8.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "standard",
|
|
"plugins": [
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"yoda": 0,
|
|
"semi": [
|
|
2,
|
|
"always"
|
|
],
|
|
"no-unused-vars": 2,
|
|
"no-extra-semi": 2,
|
|
"semi-spacing": [
|
|
2,
|
|
{
|
|
"before": false,
|
|
"after": true
|
|
}
|
|
],
|
|
"react/jsx-uses-react": 1,
|
|
"react/jsx-uses-vars": 1
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
}
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-react-jsx",
|
|
"transform-es2015-modules-commonjs"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "webpack --watch",
|
|
"lint": "eslint *.js",
|
|
"build": "NODE_ENV=production webpack"
|
|
}
|
|
}
|