-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "@episerver/commitlint-plugin-references",
"version": "1.0.0",
"main": "index.js",
"repository": "github:ben-mckernan/commitlint-plugin-references",
"license": "MIT",
"keywords": [
"commitlint",
"commitlintplugin",
"episerver"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"@commitlint/ensure": "^8.1.0",
"@commitlint/message": "^8.1.0"
},
"devDependencies": {
"@episerver/eslint-config": "^1.2.0",
"eslint": "^6.2.1",
"jest": "^24.9.0"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"@episerver"
],
"overrides": [
{
"files": [
"*.test.js"
],
"env": {
"jest": true
}
}
],
"parserOptions": {
"ecmaVersion": 6
}
}
}