-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.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
{
"name": "json-schema-rules-engine",
"version": "1.2.0",
"description": "Rules engine based on JSON Schema",
"main": "build/index.js",
"author": "Adam Jenkins",
"license": "MIT",
"browser": "build/bundle.min.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/akmjenkins/json-schema-rules-engine"
},
"bugs": {
"url": "https://github.com/akmjenkins/json-schema-rules-engine/issues"
},
"keywords": [
"json schema",
"rules engine"
],
"files": [
"build"
],
"scripts": {
"clean": "rimraf build",
"build": "yarn clean && yarn babel && rollup -c",
"babel": "babel src -d build --copy-files --no-copy-ignored",
"lint": "eslint src/",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"ajv": "^8.6.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"jsonpointer": "^5.0.0",
"lodash": "^4.17.21",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}