-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.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
58
59
60
61
62
63
64
65
66
{
"name": "@unly/conditions-matcher",
"version": "2.0.1",
"description": "Compares a given context with a filter (a set of conditions) and resolves whether the context checks the filter. Strongly inspired by [GraphQL filters](https://www.prisma.io/docs/reference/prisma-api/queries-ahwee4zaey#filtering-by-field).",
"scripts": {
"start": "cross-env-shell 'concurrently -p '{name}' -n 'lint,build,test' -c 'gray.bgWhite,yellow.bgBlue,green.bgWhite' \"yarn lint\" \"yarn build\" \"yarn test\"'",
"build": "tsc -w",
"build:once": "tsc",
"clean": "rm -rf lib/",
"lint": "esw src/ --fix --watch",
"lint:once": "eslint src/ --fix",
"preversion": "yarn lint:once && yarn test:once && yarn doc:toc",
"postversion": "git push && git push --tags",
"prepublishOnly": "yarn clean && yarn build:once && yarn publish:preview && cli-confirm \"Do you really want to release a new version? Please check the files that will be publicly released first. (y/n)\"",
"publish:preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"release": "yarn bump --prompt --commit --tag --push",
"releaseAndPublish": "yarn release && npm publish",
"doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
"test": "NODE_ENV=test jest --watch",
"test:once": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"main": "lib/checkMatches.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UnlyEd/conditions-matcher.git"
},
"author": "unlyEd",
"license": "MIT",
"bugs": {
"url": "https://github.com/UnlyEd/conditions-matcher/issues"
},
"homepage": "https://github.com/UnlyEd/conditions-matcher",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"/lib"
],
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/preset-env": "7.5.0",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "24.0.15",
"@types/lodash": "4.14.135",
"@types/node": "12.0.12",
"@unly/cli-confirm": "1.1.1",
"babel-jest": "24.8.0",
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14",
"eslint-watch": "4.0.2",
"jest": "24.8.0",
"jsdoc-to-markdown": "4.0.1",
"markdown-toc": "1.2.0",
"ts-jest": "24.0.2",
"typescript": "3.5.2",
"version-bump-prompt": "4.2.2"
},
"dependencies": {
"lodash": "4.17.14"
}
}