-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "@dolittle/typescript.webpack.aurelia",
"version": "1.2.2",
"description": "Build tool for webpack-based aurelia applications",
"homepage": "https://dolittle.io/",
"author": "Dolittle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dolittle-tools/TypeScript.Webpack.Aurelia.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"Distribution",
"Source/*.ts"
],
"main": "Distribution/index.js",
"types": "Distribution/index.d.ts",
"scripts": {
"ts:build": "tsc -p tsconfig.json",
"build": "yarn clean && yarn ts:build",
"clean": "rimraf Distribution",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@types/webpack": "^4.39.8",
"@dolittle/typescript.webpack": "^1.2.12",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-polyfills": "^1.3.4",
"aurelia-testing": "^1.0.0",
"aurelia-webpack-plugin": "^4.0.0"
},
"devDependencies": {
"rimraf": "^3.0.0",
"typescript": "^3.7.2"
}
}