This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.29 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@asset-pipe/common",
"version": "0.0.0-development",
"author": {
"name": "Trygve Lie",
"email": "[email protected]"
},
"description": "Misc common methods",
"main": "./lib/common.js",
"repository": {
"type": "git",
"url": "https://github.com/asset-pipe/asset-pipe-common.git"
},
"keywords": ["test"],
"contributors": [
{
"name": "Trygve Lie",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/asset-pipe/asset-pipe-common/issues"
},
"license": "MIT",
"dependencies": {
"readable-stream": "2.3.6"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"JSONStream": "1.3.3",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.1",
"eslint-config-finn": "^3.0.0",
"eslint-config-finn-prettier": "^3.0.1",
"eslint-plugin-import": "^2.9.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"travis-deploy-once": "^5.0.1",
"semantic-release": "^15.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "jest --coverage",
"lint:format": "eslint --fix .",
"lint:commit": "commitlint --from=HEAD~1",
"precommit": "lint-staged",
"cm": "git-cz",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"files": ["lib"],
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4,
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2
}
},
{
"files": ".eslintrc",
"options": {
"parser": "json",
"tabWidth": 2
}
}
]
},
"lint-staged": {
"*.js": ["eslint --fix --config ./.eslintrc", "git add"],
"{*.json,*.md,.eslintrc}": ["prettier --write", "git add"]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
}
}