-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "ber-numbers",
"version": "0.0.4",
"author": "Roman Burunkov <romon2002@gmail.com>",
"description": "Simple BER encoding and decoding for integers in JavaScript.",
"repository": "github:RomanBurunkov/ber-numbers",
"main": "./lib/ber-numbers.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint --fix . && echo 'Lint complete.'",
"pretest": "npm run lint",
"test": "jest ./test --passWithNoTests --collect-coverage"
},
"keywords": [
"BER",
"Encode",
"Decode"
],
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.7.1",
"prettier": "^1.16.4"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": [
],
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"settings": {
},
"rules": {
"linebreak-style": ["error", "unix"]
}
}
}