-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "@gjax/uri",
"version": "1.3.0",
"description": "Convenient uri API",
"main": "./src/index.js",
"engines": {
"node": ">=8.6.0"
},
"keywords": [
"uri",
"url",
"query",
"encode",
"url builder",
"es6 template"
],
"dependencies": {
"lodash.isequalwith": "^4.4.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"docdash": "^0.4.0",
"dtsmake": "0.0.10",
"esformatter": "^0.11.3",
"esformatter-eol-last": "^1.0.0",
"esformatter-limit-linebreaks": "0.0.3",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"jsdoc": "^3.6.4",
"pre-commit": "^1.2.2",
"typescript": "^2.9.2"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | node coveralls",
"test": "jest",
"test-coverage": "jest --coverage",
"lint": "eslint ./src ./test",
"lint-hook": "bash ./scripts/lint-hook.sh",
"formatter-hook": "bash ./scripts/formatter-hook.sh",
"gen-docs": "rm -rf doc/api | jsdoc -c jsdoc.conf.json",
"check-typings": "tsc --project typings"
},
"pre-commit": [
"lint-hook",
"formatter-hook"
],
"repository": {
"type": "git",
"url": "https://github.com/gratex/uri"
},
"author": "",
"license": "ISC",
"typings": "./typings/index.d.ts",
"jest": {
"testURL": "http://localhost/foo/"
}
}