-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "urlon",
"version": "0.0.0-semantically-released",
"description": "URL Object Notation. JSON-like encoding for URLs",
"license": "MIT",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"dist": "umd -c urlon < lib/urlon.js > dist/urlon.umd.js",
"lint": "eslint .",
"prepare": "husky install && npm run dist"
},
"keywords": [
"urlon",
"json",
"notation",
"url"
],
"homepage": "https://github.com/cerebral/urlon",
"author": {
"name": "Vjeux",
"email": "[email protected]",
"url": "http://blog.vjeux.com/"
},
"contributors": [
"Aleksei Gurianov <[email protected]>"
],
"files": [
"lib/urlon.js",
"dist/urlon.umd.js"
],
"main": "lib/urlon.js",
"repository": {
"type": "git",
"url": "https://github.com/cerebral/urlon.git"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"umd": "^3.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}