eve/package.json
2022-03-28 10:54:20 +08:00

74 rivejä
1.9 KiB
JSON

{
"name" : "eve",
"author" : {
"name" : "Dmitry Baranovskiy",
"email" : "dmitry@baranovskiy.com",
"url" : "http://dmitry.baranovskiy.com"
},
"description" : "Simple custom events",
"license": "Apache-2.0",
"version" : "0.5.4",
"main" : "./eve.js",
"devDependencies": {
"mocha": "*",
"expect.js": "*",
"eslint": "*",
"dr.js": "~0.1.0"
},
"scripts": {
"test": "eslint eve.js",
"build": "node node_modules/dr.js/dr dr.json"
},
"repository": {
"type": "git",
"url": "git@github.com:adobe-webplatform/eve.git"
},
"eslintConfig": {
"globals": {
"window": true,
"console": true
},
"rules": {
"block-scoped-var": 0,
"comma-dangle": 0,
"no-extra-parens": 1,
"no-shadow": 0,
"consistent-return": 0,
"eqeqeq": 0,
"no-new-wrappers": 0,
"no-sequences": 1,
"radix": 2,
"new-parens": 0,
"no-underscore-dangle": 0,
"no-path-concat": 0,
"strict": 0,
"camelcase": 0,
"no-extend-native": 0,
"no-loop-func": 0,
"new-cap": 0,
"no-unused-expressions": 0,
"no-mixed-requires": 0,
"indent": ["error", 4, { "SwitchCase": 1, "VariableDeclarator": 1 }],
"no-multi-spaces": [0, {
"exceptions": {
"VariableDeclarator": true
}
}],
"no-trailing-spaces": [2, { "skipBlankLines": false }],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
"quotes": [
1,
"double",
"avoid-escape"
]
}
}
}