forked from swagger-api/apidom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.22 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.22 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "apidom-monorepo",
"version": "0.0.0-ignore",
"description": "ApiDOM Monorepo",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"private": true,
"engines": {
"node": ">=16.8.0",
"npm": ">=7.21.0"
},
"comments": {
"scripts": {
"prebuild": "We build WASM directly inside node_modules"
}
},
"scripts": {
"prebuild": "cd ./node_modules/tree-sitter-json && tree-sitter generate ./grammar.js && tree-sitter build-wasm && node-gyp build && cd ../tree-sitter-yaml && cross-env BABEL_ENV=cjs NODE_OPTIONS='-r core-js/stable @babel/register' tree-sitter generate ./grammar.js && tree-sitter build-wasm && node-gyp build",
"build": "lerna run build",
"build:es": "lerna run build:es",
"build:cjs": "lerna run build:cjs",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"typescript:check-types": "lerna run typescript:check-types",
"typescript:declaration": "lerna run typescript:declaration",
"clean": "lerna run clean",
"test": "lerna run test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swagger-api/apidom.git"
},
"author": "Vladimir Gorej",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/swagger-api/apidom/issues"
},
"homepage": "https://github.com/swagger-api/apidom#readme",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@babel/cli": "=7.16.0",
"@babel/core": "=7.16.0",
"@babel/plugin-proposal-class-properties": "=7.16.0",
"@babel/plugin-proposal-object-rest-spread": "=7.16.0",
"@babel/plugin-transform-modules-commonjs": "=7.16.0",
"@babel/plugin-transform-runtime": "=7.16.4",
"@babel/preset-env": "=7.16.4",
"@babel/preset-typescript": "=7.16.0",
"@babel/register": "=7.16.0",
"@commitlint/cli": "=15.0.0",
"@commitlint/config-conventional": "=15.0.0",
"@types/chai": "=4.3.0",
"@types/dedent": "=0.7.0",
"@types/mocha": "=9.0.0",
"@types/sinon": "=10.0.6",
"@typescript-eslint/eslint-plugin": "=5.6.0",
"@typescript-eslint/parser": "=5.6.0",
"babel-loader": "=8.2.3",
"babel-plugin-native-error-extend": "=2.0.2",
"benchmark": "=2.1.4",
"chai": "=4.3.4",
"copyfiles": "=2.4.1",
"core-js": "=3.19.3",
"cross-env": "=7.0.3",
"dedent": "=0.7.0",
"eslint": "=8.4.1",
"eslint-config-airbnb": "=19.0.2",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-config-airbnb-typescript": "=16.1.0",
"eslint-config-prettier": "=8.3.0",
"eslint-plugin-import": "=2.25.3",
"eslint-plugin-mocha": "=10.0.1",
"eslint-plugin-prettier": "=4.0.0",
"file-loader": "=6.2.0",
"husky": "=7.0.4",
"jsdom": "=19.0.0",
"jsdom-global": "=3.0.2",
"lerna": "=4.0.0",
"lint-staged": "=12.1.2",
"microtime": "=3.0.0",
"mocha": "=9.1.3",
"mocha-chai-jest-snapshot": "=1.1.3",
"node-gyp": "=8.4.1",
"npm-run-all": "=4.1.5",
"prettier": "=2.5.1",
"rimraf": "=3.0.2",
"rollup": "=2.61.0",
"rollup-plugin-dts": "=4.0.1",
"sinon": "=12.0.1",
"terser-webpack-plugin": "=5.2.5",
"ts-node": "=10.4.0",
"typescript": "=4.5.3",
"webpack": "=5.65.0",
"webpack-cli": "=4.9.1"
}
}