forked from dsherret/ts-morph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 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
{
"name": "@ts-morph/bootstrap",
"version": "0.8.0",
"description": "API for getting quickly set up with the TypeScript Compiler API.",
"keywords": ["typescript", "compiler", "bootstrap"],
"main": "dist/ts-morph-bootstrap.js",
"typings": "lib/ts-morph-bootstrap.d.ts",
"author": "David Sherret",
"license": "MIT",
"repository": "git+https://github.com/dsherret/ts-morph.git",
"scripts": {
"build": "rimraf dist && yarn rollup && yarn build:declarations",
"build:declarations": "ts-node --compiler ttypescript --project scripts/tsconfig.json --transpile-only scripts/buildDeclarations.ts",
"test": "cross-env TS_NODE_COMPILER=\"ttypescript\" TS_NODE_TRANSPILE_ONLY=\"true\" mocha",
"test:ci": "yarn test",
"test:debug": "yarn test --inspect-brk",
"test:ts-versions": "ts-node --transpile-only scripts/test/testTypeScriptVersions",
"rollup": "rollup --config"
},
"dependencies": {
"@ts-morph/common": "~0.7.5"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/ts-nameof": "^4.2.1",
"@ts-morph/scripts": "~0.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.38.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-morph": "npm:[email protected]",
"ts-nameof": "^5.0.0",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "~4.1.3"
},
"publishConfig": {
"access": "public"
}
}