-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
54 lines (54 loc) · 1.8 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": {
"@smartive/tslint-config": "^4.0.0",
"@types/jest": "^23.3.1",
"@types/lodash-es": "^4.17.1",
"@types/mock-fs": "^3.6.30",
"@types/node": "^10.9.4",
"del-cli": "^1.1.0",
"jest": "^23.5.0",
"mock-fs": "^4.6.0",
"semantic-release": "^15.9.12",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tsutils": "^3.0.0",
"typedoc": "^0.12.0"
},
"dependencies": {
"lodash": "^4.17.10",
"lodash-es": "^4.17.10",
"tslib": "^1.9.3",
"typescript": "^3.0.3"
}
}