forked from QuorumDMS/filepath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.8 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
{
"name": "@autovance/filepath",
"version": "0.0.0",
"access": "public",
"description": "URL like utility for manipulating file paths, names and extensions",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint --fix lib/* tests/*",
"test": "jest tests/",
"test:watch": "npm run test -- --watchAll",
"prepare": "npm run build"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/autovance/filepath.git"
},
"keywords": [
"file",
"path",
"lib"
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "Matt Forster <matt@autovance.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autovance/filepath/issues"
},
"homepage": "https://github.com/autovance/filepath#readme",
"prettier": "@autovance/eslint-config-autovance/prettier",
"eslintConfig": {
"extends": [
"@autovance/eslint-config-autovance/typescript"
],
"plugins": [
"jest"
],
"env": {
"jest": true
},
"rules": {
"jest/no-focused-tests": "error"
}
},
"devDependencies": {
"@autovance/eslint-config-autovance": "^1.3.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.2.0",
"husky": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"semantic-release": "^17.4.4",
"ts-jest": "^26.4.4",
"typescript": "^3.7.4"
}
}