2016-06-30 22:01:04 -08:00
|
|
|
{
|
|
|
|
|
"name": "hyperterm-web",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"description": "",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"classnames": "2.2.5",
|
2016-07-04 19:59:40 -08:00
|
|
|
"hterm-umdjs": "1.1.2",
|
2016-07-03 12:35:45 -08:00
|
|
|
"json-loader": "0.5.4",
|
|
|
|
|
"mousetrap": "1.6.0",
|
2016-07-04 17:13:44 -08:00
|
|
|
"ms": "0.7.1",
|
2016-06-30 22:01:04 -08:00
|
|
|
"react": "15.1.0",
|
2016-07-03 12:35:45 -08:00
|
|
|
"react-addons-shallow-compare": "15.1.0",
|
2016-07-01 12:01:33 -08:00
|
|
|
"react-dom": "15.1.0",
|
2016-07-08 13:26:23 -08:00
|
|
|
"react-proxy": "1.1.8",
|
2016-07-03 12:35:45 -08:00
|
|
|
"semver-compare": "1.0.0"
|
2016-06-30 22:01:04 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"babel-cli": "6.10.1",
|
|
|
|
|
"babel-core": "6.10.4",
|
2016-07-07 21:24:51 -08:00
|
|
|
"babel-eslint": "6.1.0",
|
|
|
|
|
"babel-loader": "6.2.4",
|
|
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "6.10.3",
|
|
|
|
|
"babel-plugin-transform-react-jsx": "6.8.0",
|
2016-06-30 22:01:04 -08:00
|
|
|
"css-loader": "0.23.1",
|
2016-07-07 21:24:51 -08:00
|
|
|
"eslint": "2.13.1",
|
|
|
|
|
"eslint-config-standard": "5.3.1",
|
2016-07-01 13:31:23 -08:00
|
|
|
"eslint-plugin-promise": "1.3.2",
|
2016-07-07 21:24:51 -08:00
|
|
|
"eslint-plugin-react": "5.2.2",
|
|
|
|
|
"eslint-plugin-standard": "1.3.2",
|
|
|
|
|
"style-loader": "0.13.1",
|
|
|
|
|
"webpack": "1.13.1"
|
2016-06-30 22:01:04 -08:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"extends": "standard",
|
|
|
|
|
"plugins": [
|
|
|
|
|
"react"
|
|
|
|
|
],
|
|
|
|
|
"rules": {
|
|
|
|
|
"yoda": 0,
|
2016-07-01 12:01:33 -08:00
|
|
|
"semi": [
|
|
|
|
|
2,
|
|
|
|
|
"always"
|
|
|
|
|
],
|
2016-06-30 22:01:04 -08:00
|
|
|
"no-unused-vars": 2,
|
|
|
|
|
"no-extra-semi": 2,
|
2016-07-01 12:01:33 -08:00
|
|
|
"semi-spacing": [
|
|
|
|
|
2,
|
|
|
|
|
{
|
|
|
|
|
"before": false,
|
|
|
|
|
"after": true
|
|
|
|
|
}
|
|
|
|
|
],
|
2016-06-30 22:01:04 -08:00
|
|
|
"react/jsx-uses-react": 1,
|
|
|
|
|
"react/jsx-uses-vars": 1
|
|
|
|
|
},
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"ecmaFeatures": {
|
|
|
|
|
"jsx": true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"babel": {
|
|
|
|
|
"plugins": [
|
2016-07-08 15:00:51 -08:00
|
|
|
"transform-es2015-modules-commonjs",
|
2016-07-07 21:24:51 -08:00
|
|
|
"transform-react-jsx"
|
2016-06-30 22:01:04 -08:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "webpack --watch",
|
|
|
|
|
"lint": "eslint *.js",
|
|
|
|
|
"build": "NODE_ENV=production webpack"
|
|
|
|
|
}
|
2016-07-01 13:31:23 -08:00
|
|
|
}
|