-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "proper-url-join",
"description": "Like `path.join` but for a URL",
"version": "2.1.2",
"keywords": [
"url",
"join",
"path",
"pathname",
"normalize"
],
"author": "André Cruz <andre@moxy.studio>",
"homepage": "https://github.com/moxystudio/js-proper-url-join",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/js-proper-url-join.git"
},
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"scripts": {
"build:commonjs": "BABEL_ENV=commonjs babel src -d lib",
"build:es": "BABEL_ENV=es babel src -d es",
"build": "npm run build:commonjs && npm run build:es",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest --env node --coverage",
"prerelease": "npm t && npm run lint && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-jest": "^24.5.0",
"babel-preset-moxy": "^3.0.4",
"eslint": "^6.6.0",
"eslint-config-moxy": "^9.1.0",
"husky": "^3.0.9",
"jest": "^24.5.0",
"lint-staged": "^9.4.2",
"standard-version": "^7.0.0"
},
"dependencies": {
"query-string": "^7.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}