forked from mulesoft-labs/ts-structure-parser
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "ts-file-parser",
"version": "0.0.22",
"description": "This repository provides a parser for `*.ts` files. It parses the structure of a file and provides JSON object that contains its declaration.",
"private": false,
"main": "dist/index.js",
"scripts": {
"build": "grunt build",
"test": "grunt test"
},
"dependencies": {
"typescript": "2.7.2"
},
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "2.2.48",
"@types/node": "8.9.4",
"chai": "4.1.1",
"grunt": "1.0.2",
"grunt-contrib-clean": "1.1.0",
"grunt-mocha-test": "0.13.2",
"grunt-ts": "6.0.0-beta.16",
"grunt-tslint": "5.0.1",
"mocha": "3.5.0",
"ts-node": "3.3.0",
"tslint": "5.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/AbatapCompany/ts-structure-parser.git"
},
"keywords": [
"typescript",
"content",
"parser"
],
"homepage": "https://github.com/AbatapCompany/ts-structure-parser",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AbatapCompany/ts-structure-parser/issues"
}
}