-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
93 lines (93 loc) · 3.52 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "aurelia-google-maps",
"version": "2.4.0",
"description": "A plugin for working with Google Maps within Aurelia",
"keywords": [
"aurelia",
"plugin",
"google",
"maps",
"map"
],
"main": "dist/commonjs/index.js",
"typings": "dist/commonjs/index.d.ts",
"scripts": {
"lint": "cross-env tslint --project tsconfig.json",
"pretest": "cross-env npm run lint",
"test": "yarn jest",
"prebuild:amd": "cross-env rimraf dist/amd",
"build:amd": "cross-env tsc --project tsconfig.build.json --outDir dist/amd --module amd",
"postbuild:amd": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/amd",
"prebuild:commonjs": "cross-env rimraf dist/commonjs",
"build:commonjs": "cross-env tsc --project tsconfig.build.json --outDir dist/commonjs --module commonjs",
"postbuild:commonjs": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/commonjs",
"prebuild:native-modules": "cross-env rimraf dist/native-modules",
"build:native-modules": "cross-env tsc --project tsconfig.build.json --outDir dist/native-modules --module esnext",
"postbuild:native-modules": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/native-modules",
"prebuild:system": "cross-env rimraf dist/system",
"build:system": "cross-env tsc --project tsconfig.build.json --outDir dist/system --module system",
"postbuild:system": "cross-env copyfiles --up 1 src/**/*.html src/**/*.css dist/system",
"prebuild": "cross-env rimraf dist",
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:native-modules\"",
"changelog": "cross-env conventional-changelog -p angular -i doc/CHANGELOG.md -s",
"bump-version": "npm --no-git-tag-version version",
"preprepare-release": "cross-env npm run test",
"prepare-release": "cross-env npm run changelog && npm run build"
},
"repository": {
"type": "git",
"url": "http://github.com/Vheissu/aurelia-google-maps"
},
"author": "Dwayne Charrington <dwaynecharrington@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Vheissu/aurelia-google-maps",
"bugs": {
"url": "https://github.com/Vheissu/aurelia-google-maps/issues"
},
"dependencies": {
"aurelia-binding": "^2.5.4",
"aurelia-dependency-injection": "^1.5.2",
"aurelia-event-aggregator": "^1.0.3",
"aurelia-framework": "^1.4.1",
"aurelia-logging": "^1.5.2",
"aurelia-pal": "^1.8.2",
"aurelia-task-queue": "^1.3.3",
"aurelia-templating": "^1.11.1"
},
"devDependencies": {
"@types/jasmine": "^4.3.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"aurelia-bootstrapper": "^2.4.0",
"aurelia-pal-browser": "^1.8.1",
"aurelia-polyfills": "^1.3.4",
"aurelia-testing": "^1.1.0",
"concurrently": "^4.0.1",
"conventional-changelog-cli": "^2.0.11",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-html-loader": "^1.0.0",
"jest-transform-stub": "^2.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
},
"aurelia": {
"import": {
"dependencies": {
"name": "aurelia-google-maps",
"path": "../node_modules/aurelia-google-maps/dist/amd",
"main": "index"
}
},
"build": {
"resources": [
"aurelia-google-maps/google-maps"
]
}
}
}