-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
123 lines (123 loc) · 3.92 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "aurelia-dialog",
"version": "2.0.0",
"description": "A dialog plugin for Aurelia.",
"keywords": [
"aurelia",
"plugin",
"dialog",
"modal"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/dialog/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-dialog.js",
"module": "dist/native-modules/aurelia-dialog.js",
"browser": "dist/umd/aurelia-dialog.js",
"unpkg": "dist/umd-es2015/aurelia-dialog.js",
"typings": "dist/types/aurelia-dialog.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/dialog"
},
"scripts": {
"lint": "tslint --project tsconfig.json",
"pretest": "npm run lint",
"test": "karma start --single-run",
"test:watch": "karma start",
"test:debugger": "karma start --browsers ChromeDebugging",
"prebuild": "rimraf dist && rimraf node_modules/@types/!node",
"build": "rollup -c",
"build:dts": "tsc -p tsconfig.types.json",
"predoc": "rimraf doc/api.json && node doc/shape-defs",
"doc": "typedoc --mode modules --out doc dist/types --json doc/api.json --excludeExternals --includeDeclarations --name aurelia-dialog --tsconfig tsconfig.doc.json --logger console",
"postdoc": "node doc/shape-doc && rimraf dist/doc-temp",
"changelog": "conventional-changelog -p angular -i doc/CHANGELOG.md -s",
"bump-version": "npm --no-git-tag-version version",
"precut-release": "npm run test",
"cut-release": "npm run changelog && npm run build && npm run build:dts && npm run bump-version"
},
"files": [
"dist",
"doc"
],
"jspm": {
"registry": "npm",
"jspmPackage": true,
"main": "aurelia-dialog",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"peerDependencies": {
"aurelia-binding": "^2.1.4",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-templating": "^1.8.2"
},
"dependencies": {
"aurelia-binding": "^2.1.4",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-templating": "^1.8.2"
},
"devDependencies": {
"aurelia-bootstrapper": "^1.0.0",
"aurelia-loader": "^1.0.0",
"aurelia-loader-default": "^1.0.2",
"aurelia-templating-binding": "^1.3.0",
"aurelia-testing": "^1.0.0-beta.2.0.1"
}
},
"dependencies": {
"aurelia-binding": "^2.1.4",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0",
"aurelia-templating": "^1.8.2"
},
"devDependencies": {
"@types/jasmine": "2.5.47",
"aurelia-bootstrapper": "^2.0.1",
"aurelia-event-aggregator": "^1.0.1",
"aurelia-loader": "^1.0.2",
"aurelia-loader-default": "^1.0.2",
"aurelia-loader-webpack": "^2.2.1",
"aurelia-polyfills": "^1.3.4",
"aurelia-templating-binding": "^1.5.3",
"aurelia-testing": "^1.0.0-beta.2.0.1",
"aurelia-webpack-plugin": "^4.0.0",
"concurrently": "^3.1.0",
"conventional-changelog-cli": "^1.2.0",
"copyfiles": "^1.0.0",
"html-loader": "^0.5.5",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.6",
"less": "^3.9.0",
"postcss-loader": "^3.0.0",
"rimraf": "^2.5.4",
"rollup": "^1.11.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.21.0",
"ts-loader": "^6.0.0",
"tslint": "^5.16.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.4000",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
}
}