forked from buehler/node-typescript-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "typescript-parser",
"version": "0.0.0-development",
"description": "Parser for typescript (and javascript) files, that compiles those files and generates a human understandable AST.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p ./config/tsconfig.build.json",
"clean": "del-cli ./build ./coverage",
"develop": "npm run clean && tsc -p .",
"lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json 'src/**/*.ts'",
"test": "npm run lint && npm run clean && jest -c ./jest.json",
"test:watch": "npm run clean && jest -c ./jest.json --watch --no-coverage",
"typedoc": "del-cli ./docs && typedoc --ignoreCompilerErrors --out ./docs --mode file --tsconfig ./config/tsconfig.build.json ./src/",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeScript-Heroes/node-typescript-parser.git"
},
"keywords": [
"typescript",
"parser",
"AST",
"parsing"
],
"author": "Christoph Bühler <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TypeScript-Heroes/node-typescript-parser/issues"
},
"homepage": "https://github.com/TypeScript-Heroes/node-typescript-parser#readme",
"devDependencies": {
"@types/lodash-es": "^4.17.0",
"@types/jest": "^21.1.8",
"@types/mock-fs": "^3.6.30",
"@types/node": "^8.0.57",
"del-cli": "^1.1.0",
"jest": "^21.2.1",
"mock-fs": "^4.4.2",
"semantic-release": "^9.0.0",
"ts-jest": "^21.2.4",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"tsutils": "^2.13.0",
"typedoc": "^0.9.0"
},
"dependencies": {
"lodash": "^4.17.5",
"lodash-es": "^4.17.5",
"tslib": "^1.8.1",
"typescript": "^2.6.2"
}
}