-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hyper-active-session",
"version": "1.0.0",
"description": "Hyper plugin that facilitates working with the active session (terminal)",
"keywords": [
"hyper.app",
"hyper",
"hyperterm"
],
"author": "van_staub@us.ibm.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/van-ibm/hyper-active-session"
},
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"dependencies": {},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^3.1.4",
"eslint-config-prettier": "^2.3.0",
"eslint-config-xo-react": "^0.13.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^7.1.0",
"lint-staged": "^4.0.0",
"prettier": "^1.5.2",
"webpack": "2.2.0-rc.1",
"webpack-node-externals": "^1.3.3",
"xo": "^0.18.2",
"xo-loader": "^0.8.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "webpack --watch",
"precommit": "lint-staged"
},
"xo": {
"ignores": [
"examples/**/*",
"node_modules/**/*"
],
"extends": "prettier",
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"no-unused-vars": 0,
"import/order": 1,
"no-warning-comments": 0,
"prefer-promise-reject-errors": 0,
"import/named": 1,
"space-in-parens": 0,
"object-curly-spacing": 0,
"computed-property-spacing": 0,
"space-infix-ops": 0,
"one-var": 0,
"no-console": 0,
"no-useless-constructor": 1,
"no-useless-escape": 1
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --no-semi --write"
]
}
}