forked from Natedeploys/reference-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "@afnan.bashir/dxipher-js",
"version": "1.4.9",
"description": "Conversion library for parsing various citation/reference files",
"license": "MIT",
"repository": "afnan/dxipher-js",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"lint": "eslint '**/*.js' --fix",
"format": "prettier-eslint $PWD/'**/*.js' --write"
},
"files": [
"index.js",
"parsers/*",
"utilities/*"
],
"lint-staged": {
"dxipher-js/**/*.js": [
"prettier --write",
"eslint src/ --fix",
"jest --bail --findRelatedTests",
"git add"
]
},
"keywords": [
"reference",
"npm",
"package",
"js"
],
"dependencies": {
"chevrotain": "^10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged",
"pre-push": "npm test"
}
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier-eslint-cli": "^5.0.0"
}
}