-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 KB
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
{
"name": "@riddler/predicator",
"version": "0.1.1",
"description": "Safe predicate engine",
"main": "dist/predicator.js",
"scripts": {
"build": "parcel build src/predicator.js",
"lint": "eslint .",
"prepublish": "yarn test && yarn build",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test:fix": "npm run test -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riddler/predicator-js.git"
},
"files": [
"dist/predicator.js",
"LICENSE.txt",
"README.md"
],
"author": "JohnnyT",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/riddler/predicator-js/issues"
},
"homepage": "https://github.com/riddler/predicator-js#readme",
"jest": {
"watchPlugins": [
"jest-runner-eslint/watch-fix"
],
"projects": [
{
"displayName": "test"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/src/**/*.js"
]
}
]
},
"dependencies": {
"chevrotain": "^4.5.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-runner-eslint": "^0.7.3",
"liquidjs": "^10.0.0",
"parcel-bundler": "^1.12.3",
"yaml": "^1.6.0"
}
}