forked from chrisveness/crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.44 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
{
"name": "crypto-libraries",
"description": "Collection of cryptographic routines",
"repository": { "type": "git", "url": "https://github.com/chrisveness/crypto" },
"author": "Chris Veness",
"version": "0.0.0",
"scripts": {
"test": "mocha test/*.js",
"lint": "eslint *.js"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.12.2",
"mocha": "^3.2.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true
},
"parserOptions": { "ecmaVersion": 2015 },
"extends": "eslint:recommended",
"rules": {
"array-bracket-spacing": [ "error", "always", { "singleValue": false } ],
"comma-dangle": [ "error", "always-multiline" ],
"curly": [ "error", "multi-line" ],
"indent": [ "error", 4, { "SwitchCase": 1 } ],
"key-spacing": [ "error", { "align": "value" } ],
"no-console": "warn",
"no-irregular-whitespace": "warn",
"no-redeclare": "warn",
"no-shadow": "warn",
"no-unused-vars": "warn",
"no-var": "error",
"object-curly-spacing": [ "error", "always" ],
"prefer-const": "error",
"quotes": [ "error", "single", "avoid-escape" ],
"semi": [ "error", "always" ],
"strict": [ "error", "global" ]
}
}
}