-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 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
{
"name": "@patomation/query-param",
"version": "1.4.0",
"description": "A module to get query string parameters from the window object ",
"public": true,
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublish": "run-s lint test build",
"build": "rollup -c",
"lint": "eslint --ext .ts .",
"test": "mocha -r ts-node/register test/test.ts",
"coverage": "nyc mocha -r ts-node/register test/test.ts",
"release": "standard-version",
"publish": "git push --follow-tags"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --config commitlint.config.json -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/patomation/query-param.git"
},
"keywords": [
"query",
"parameter",
"string",
"param",
"window",
"location",
"substring",
"javascript",
"es6",
"typescript",
"localStorage",
"persist",
"persisted"
],
"author": "Patrick Kelly",
"license": "MIT",
"bugs": {
"url": "https://github.com/patomation/query-param/issues"
},
"homepage": "https://github.com/patomation/query-param#readme",
"devDependencies": {
"@commitlint/config-conventional": "11.0.0",
"@types/chai": "4.2.14",
"@types/jsdom": "16.2.5",
"@types/jsdom-global": "3.0.2",
"@types/mocha": "8.0.4",
"@types/node": "14.14.7",
"@typescript-eslint/eslint-plugin": "4.7.0",
"chai": "4.2.0",
"commitlint": "11.0.0",
"coveralls": "3.1.0",
"eslint": "7.13.0",
"eslint-config-standard-with-typescript": "19.0.1",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.0",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"mocha": "8.2.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"rollup": "2.33.1",
"rollup-plugin-typescript2": "0.29.0",
"standard-version": "9.1.0",
"ts-node": "9.0.0",
"tsconfigs": "5.0.0",
"typescript": "4.0.5"
},
"dependencies": {}
}