-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.67 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@swaggerexpert/arazzo-runtime-expression",
"publishConfig": {
"access": "public"
},
"version": "2.0.3",
"description": "Arazzo Runtime expressions parser, validator and extractor.",
"main": "./cjs/index.cjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./es/index.mjs",
"require": "./cjs/index.cjs"
},
"./package.json": "./package.json"
},
"watch": {
"test": "{src,test}/*.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"grammar:compile": "node ./scripts/apg-js.js --lite --in=./src/grammar.bnf --out=./src/grammar.js && cd ./src",
"build": "npm run grammar:compile && npm run build:es && npm run build:cjs && npm run build:cjs:apg-lite",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.js' --out-file-extension '.mjs'",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions '.js' --out-file-extension '.cjs'",
"build:cjs:apg-lite": "cross-env BABEL_ENV=cjs babel node_modules/apg-lite/lib/parser.js --out-file ./cjs/apg-lite.cjs",
"test": "cross-env UPDATE_SNAPSHOT=new mocha",
"test:watch": "npm-watch test",
"watch": "npm-watch"
},
"engines": {
"node": ">=16.14.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/swaggerexpert/arazzo-runtime-expression.git"
},
"keywords": [
"arazzo",
"runtime",
"expression",
"parser",
"validator",
"extractor"
],
"author": "Vladimír Gorej <vladimir.gorej@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/swaggerexpert/arazzo-runtime-expression/issues"
},
"homepage": "https://github.com/swaggerexpert/arazzo-runtime-expression#readme",
"files": [
"es/",
"cjs/",
"types/",
"LICENSE",
"NOTICE",
"package.json",
"README.md",
"SECURITY.md"
],
"dependencies": {
"apg-lite": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "=7.28.6",
"@babel/core": "=7.28.6",
"@babel/preset-env": "=7.29.0",
"@commitlint/cli": "=20.4.1",
"@commitlint/config-conventional": "=20.4.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"apg-js": "^4.4.0",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "=6.2.2",
"cross-env": "^10.0.0",
"husky": "=9.1.7",
"mocha": "=11.7.5",
"mocha-expect-snapshot": "^8.0.0",
"npm-watch": "^0.13.0",
"prettier": "^3.1.1",
"semantic-release": "^25.0.2"
}
}