UNPKG

2.27 kBJSONView Raw
1{
2 "name": "broccoli-typescript-compiler",
3 "version": "7.0.0",
4 "description": "A Broccoli plugin which compiles TypeScript files.",
5 "keywords": [
6 "TypeScript",
7 "broccoli-plugin",
8 "compiler",
9 "javascript",
10 "js"
11 ],
12 "homepage": "https://github.com/tildeio/broccoli-typescript-compiler",
13 "bugs": {
14 "url": "https://github.com/tildeio/broccoli-typescript-compiler/issues"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/tildeio/broccoli-typescript-compiler.git"
19 },
20 "license": "MIT",
21 "author": "Kris Selden <kris.selden@gmail.com>",
22 "files": [
23 "dist",
24 "!dist/tests",
25 "src/**/*.ts"
26 ],
27 "main": "dist/index.cjs.js",
28 "module": "dist/index.js",
29 "types": "dist/index.d.ts",
30 "scripts": {
31 "build": "yarn build:index && yarn link-self && yarn build:tests",
32 "build:index": "tsc && rollup -c rollup.config.js",
33 "build:scripts": "tsc -p scripts/tsconfig.json",
34 "build:tests": "tsc -p tests/tsconfig.json",
35 "generate-tsconfig-interface": "yarn build:scripts && node scripts/build-tsconfig-interface.js",
36 "link-self": "yarn link && yarn link broccoli-typescript-compiler",
37 "lint": "tslint --project tsconfig.json && tslint --project tests/tsconfig.json",
38 "prepare": "npm run build",
39 "test": "git submodule update --init && qunit dist/tests/*-test.js"
40 },
41 "dependencies": {
42 "broccoli-funnel": "^3.0.3",
43 "broccoli-merge-trees": "^4.2.0",
44 "broccoli-plugin": "^4.0.1",
45 "fs-tree-diff": "^2.0.1",
46 "heimdalljs": "0.3.3",
47 "md5-hex": "^3.0.1",
48 "typescript": "~4.0.3",
49 "walk-sync": "^2.1.0"
50 },
51 "devDependencies": {
52 "@types/mkdirp": "^1.0.0",
53 "@types/node": "^14.0.4",
54 "@types/qunit": "^2.9.0",
55 "broccoli": "^3.4.2",
56 "broccoli-test-helper": "2.0.0",
57 "fixturify": "^2.1.0",
58 "json-schema": "^0.2.5",
59 "json-schema-to-typescript": "^9.1.0",
60 "mkdirp": "^1.0.3",
61 "prettier": "^1.19.1",
62 "qunit": "^2.9.3",
63 "rimraf": "^3.0.2",
64 "rollup": "^1.31.1",
65 "rollup-plugin-sourcemaps": "^0.5.0",
66 "tslint": "^5.11.0",
67 "tslint-config-prettier": "^1.13.0",
68 "tslint-plugin-prettier": "^1.3.0"
69 },
70 "engine": "node >= 10.0.0",
71 "volta": {
72 "node": "10.20.1",
73 "yarn": "1.22.4"
74 }
75}