forked from mate-academy/js_rle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 762 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 762 Bytes
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
{
"name": "rle",
"version": "1.0.0",
"description": "RLE compressing",
"main": "src/rle.js",
"scripts": {
"test": "jest",
"lint": "eslint **/*.js",
"precommit": "lint-staged",
"postcommit": "git update-index --again"
},
"author": "Mate academy",
"license": "MIT",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standart": "^0.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint",
"git add"
]
}
}
}