-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.75 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
86
87
88
89
90
91
92
93
{
"name": "@propero/easy-filter",
"version": "0.0.0",
"description": "Simple parsing and serialization of filter urls",
"since": "2020",
"main": "dist/easy-filter.cjs.js",
"module": "dist/easy-filter.esm.js",
"unpkg": "dist/easy-filter.umd.js",
"browser": "dist/easy-filter.iife.js",
"types": "dist/easy-filter.esm.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -wc rollup.config.js",
"start": "node dist/easy-filter.cjs.js",
"clean": "rimraf dist temp docs coverage",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts . --fix"
},
"keywords": [
"propero",
"easy",
"filter",
"parser",
"serializer"
],
"author": "Propero Team <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^10.0.0",
"@commitlint/config-conventional": "^10.0.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@wessberg/rollup-plugin-ts": "^1.2.31",
"dotenv-flow": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-preset-typescript": "^1.2.0",
"lint-staged": "^10.2.11",
"lodash": "^4.17.20",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-ts-paths": "^1.0.5",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -g .commitlint.config.json -eV ./.git/COMMIT_EDITMSG"
}
},
"lint-staged": {
"*.{ts}": [
"eslint --ignore-path .gitignore --ext .ts"
]
},
"publishConfig": {
"access": "public"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/propero-oss/easy-filter.git"
},
"bugs": {
"url": "https://github.com/propero-oss/easy-filter/issues"
},
"homepage": "https://github.com/propero-oss/easy-filter#readme"
}