This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
106 lines (106 loc) · 3.55 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
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
101
102
103
104
105
106
{
"name": "raml-1-parser",
"version": "1.1.67",
"main": "dist/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"compile": "rimraf dist && tsc",
"build": "npm run compile && npm run generateTopLevel && npm run generateTckSuite && npm run removeMainDTSLinks",
"generateTopLevel": "node dist/topLevelGenerator/buildParsers.js",
"generateTckSuite": "node dist/parser/test/scripts/generateTCKMocha.js && npm run compile",
"tck": "node dist/parser/test/scripts/launchTCKRepo.js",
"generateDocumentation": "node dist/parser/devTools/packageTSParser.js -skipSources",
"generateTables": "node dist/parser/devTools/docGenScript.js",
"generateBrowserVersion": "node dist/browserVersionGenerator/browserVersionGenerator.js",
"generateBrowserVersionDev": "node dist/browserVersionGenerator/browserVersionGenerator.js -dev",
"pullall": "dev-env-installer pullall",
"buildall": "dev-env-installer buildall",
"testall": "dev-env-installer testall",
"devInstall": "dev-env-installer install",
"removeMainDTSLinks": "node dist/devUtil/mainDTSLinkRemover.js",
"buildBrowserPublishNpm": "node generateBrowserVersion.js --type 'npm'",
"buildBrowserPublishBower": "node generateBrowserVersion.js --type 'bower'",
"validateTCKSchema": "node dist/parser/test/scripts/schema/schemaTCKValidator.js",
"platformTests": "node dist/parser/test/scripts/platformTests.js",
"extractTypings": "node ./dist/devUtil/extractTypings.js"
},
"dependencies": {
"change-case": "^4.1.1",
"fs-extra": "8.1.0",
"http-response-object": "3.0.2",
"invariant": "2.2.4",
"json-path": "0.1.3",
"json-schema-compatibility": "1.1.0",
"json-stable-stringify": "1.0.1",
"loophole": "1.1.0",
"lrucache": "1.0.3",
"media-typer": "1.1.0",
"mkdirp": "^1.0.3",
"pluralize": "8.0.0",
"promise-polyfill": "8.1.3",
"q": "1.5.1",
"raml-definition-system": "^0.0.94",
"ts-model": "0.0.18",
"underscore": "^1.10.2",
"upper-case-first": "^2.0.1",
"urlsafe-base64": "1.0.0",
"xhr2": "0.2.0",
"xmldom-alpha": "^0.1.28",
"xmlhttprequest": "1.8.0",
"yaml-ast-parser": "0.0.43",
"z-schema": "^4.2.2"
},
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/raml-org/raml-js-parser-2.git"
},
"keywords": [
"raml",
"js",
"raml-parser",
"parser",
"typescript"
],
"homepage": "https://github.com/raml-org/raml-js-parser-2",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/raml-org/raml-js-parser-2/issues"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^8.1.0",
"@types/invariant": "^2.2.33",
"@types/marked": "^1.1.0",
"@types/mkdirp": "^1.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.20",
"@types/pluralize": "0.0.29",
"@types/q": "^1.5.4",
"@types/underscore": "^1.10.5",
"ajv": "^6.12.3",
"atom-text-typer": "0.0.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dev-env-installer": "0.0.14",
"gulp": "^4.0.2",
"gulp-istanbul": "1.1.3",
"gulp-mocha": "^6.0.0",
"json-loader": "0.5.7",
"marked": "^1.1.0",
"mocha": "^6.2.2",
"raml-1-parser-test-utils": "1.0.10",
"rimraf": "^3.0.2",
"ts-structure-parser": "0.0.19",
"typescript": "^3.9.6",
"typescript-compiler": "1.4.1-2",
"webpack": "^4.42.1"
},
"browser": {
"fs": false,
"xmlhttprequest": "./web-tools/modules/browserXMLHttpRequest.js",
"xhr2": "./web-tools/modules/browserXMLHttpRequest.js"
}
}