forked from dsherret/ts-morph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "ts-simple-ast",
"version": "0.42.1",
"description": "TypeScript compiler wrapper for AST navigation and code generation.",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"test": "gulp test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "gulp typescript",
"pre-publish": "gulp tslint && gulp test",
"code-generate": "gulp code-generate && node dist-cg/code-generation/main",
"code-verification": "gulp code-generate && node dist-cg/code-generation/ensureStructuresMatchClasses && node dist-cg/code-generation/ensureNoDefinitionFileErrors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsherret/ts-simple-ast.git"
},
"keywords": [
"typescript",
"ast",
"code generation"
],
"author": "David Sherret",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsherret/ts-simple-ast/issues"
},
"homepage": "https://github.com/dsherret/ts-simple-ast#readme",
"typescript": {
"definition": "dist/main.d.ts"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.48",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"del": "^2.0.2",
"gulp": "^3.9.1",
"gulp-filter": "^5.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^8.0.0",
"gulp-typescript": "^2.13.3",
"merge2": "^1.0.3",
"mocha": "^3.3.0",
"ts-nameof": "^0.8.0",
"tslint": "^5.3.2"
},
"dependencies": {
"code-block-writer": "^4.1.0",
"globby": "^6.1.0",
"typescript": "2.4.1"
},
"peerDependencies": {
"typescript": "2.4.1"
}
}