-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (77 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "tawk-to-aurelia",
"description": "A component wrapping the Tawk.to service",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/zewa666/tawk-to-aurelia"
},
"bugs": {
"url": "https://github.com/zewa666/tawk-to-aurelia/issues"
},
"homepage": "https://github.com/zewa666/tawk-to-aurelia",
"author": {
"email": "zewa666@gmail.com",
"name": "Vildan Softic",
"url": "https://github.com/zewa666"
},
"license": "MIT",
"dependencies": {
},
"peerDependencies": {},
"devDependencies": {
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.2.0",
"aurelia-polyfills": "^1.3.0",
"bluebird": "^3.5.1",
"@types/lodash": "^4.14.105",
"@types/node": "^9.4.7",
"@types/webpack": "^4.1.1",
"aurelia-cli": "^0.34.0",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"aurelia-tools": "^2.0.0",
"aurelia-webpack-plugin": "^3.0.0-rc.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"del": "^3.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"expose-loader": "^0.7.5",
"file-loader": "^1.1.11",
"gulp": "^4.0.0",
"gulp-rename": "^1.2.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"istanbul-instrumenter-loader": "^3.0.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.4.1",
"minimatch": "^3.0.4",
"nps": "^5.8.2",
"nps-utils": "^1.5.0",
"opn": "^5.3.0",
"style-loader": "^0.20.3",
"through2": "^2.0.3",
"ts-loader": "^4.0.1",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"url-loader": "^1.0.1",
"vinyl-fs": "^3.0.2",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "latest",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "nps",
"test": "nps test",
"build": "rimraf dist && npm run build:esnext && npm run build:amd && npm run build:commonjs",
"build:esnext": "tsc -p tsconfig.build.json --module esnext --outDir dist/esnext",
"build:amd": "tsc -p tsconfig.build.json --module amd --outDir dist/amd",
"build:commonjs": "tsc -p tsconfig.build.json --module commonjs --outDir dist/commonjs",
"prepublish": "npm run build"
},
"main": "dist/commonjs/index.js",
"typings": "dist/typings/index.d.ts"
}