forked from boboben1/parcel-plugin-typescript-paths
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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": "parcel-plugin-typescript-paths",
"version": "0.1.13",
"description": "This plugin enabled Parcel to automatically use module aliases defined in tsconfig.json's compilerOptions.paths without any additional configuration. ",
"main": "dist/index.js",
"peerDependencies": {
"parcel-bundler": "^1.11.0"
},
"dependencies": {},
"bundledDependencies": [
"@types/node"
],
"devDependencies": {
"eslint": "^5.12.0",
"mocha": "^5.2.0",
"parcel-assert-bundle-tree": "^1.0.0",
"tslint": "^5.12.0",
"parcel-bundler": "^1.11.0",
"@types/node": "^10.12.18",
"typescript": "^3.2.2"
},
"scripts": {
"test": "mocha --timeout 30000",
"build": "tsc",
"tsc": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boboben1/parcel-plugin-typescript-paths.git"
},
"keywords": [
"parcel",
"typescript",
"module-alias"
],
"author": "boboben1",
"license": "MIT",
"bugs": {
"url": "https://github.com/boboben1/parcel-plugin-typescript-paths/issues"
},
"homepage": "https://github.com/boboben1/parcel-plugin-typescript-paths#readme"
}