forked from raml-org/raml-js-parser-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.2 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
{
"name": "raml-1-parser",
"version": "1.1.30",
"main": "dist/index.js",
"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 && tsc src/parser/test/TCK2.ts --outDir dist -m commonjs --sourceMap && tsc src/parser/test/libraryExpansion.ts --outDir dist -m commonjs --sourceMap",
"tck": "node dist/parser/test/scripts/launchTCKRepo.js",
"generateDocumentation": "node dist/parser/tools/packageTSParser.js -skipSources",
"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"
},
"dependencies": {
"base64url": "^1.0.6",
"change-case": "^2.3.1",
"concat-stream": "^1.5.1",
"http-response-object": "^1.1.0",
"invariant": "^2.0.0",
"json-schema-compatibility": "^1.1.0",
"json-stable-stringify": "^1.0.1",
"loophole": "^1.1.0",
"lrucache": "^0.2.0",
"promise-polyfill": "^5.1.0",
"marked": "^0.3.6",
"media-typer": "^0.3.0",
"mkdirp": "^0.5.0",
"pluralize": "^1.2.0",
"q": "^1.0.0",
"raml-definition-system": "0.0.67",
"then-request": "^2.2.0",
"ts-structure-parser": "0.0.12",
"ts-model": "0.0.14",
"typescript-compiler": "1.4.1-2",
"underscore": "^1.8.3",
"wrench": "^1.5.8",
"xhr2": "^0.1.3",
"xmldom": "^0.1.22",
"xmlhttprequest": "^1.8.0",
"yaml-ast-parser": "0.0.34",
"z-schema": "^3.16.1"
},
"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": {
"typings": "^0.5.1",
"mocha": "^2.2.1",
"chai": "^2.2.0",
"typescript": "1.8.7",
"webpack": "1.4.2",
"gulp": "^3.9.1",
"gulp-mocha": "^2.2.0",
"chai-as-promised": "^5.2.0",
"json-loader": "^0.5.1",
"dev-env-installer": "0.0.5",
"atom-text-typer" : "0.0.1",
"rimraf": "*",
"raml-1-parser-test-utils": "^1.0.7",
"gulp-istanbul" : "*"
},
"browser": {
"fs": false,
"xmlhttprequest": "./web-tools/modules/browserXMLHttpRequest.js",
"xhr2": "./web-tools/modules/browserXMLHttpRequest.js"
}
}