forked from aurelia/templating-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.04 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.04 KB
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
124
125
126
127
128
129
{
"name": "aurelia-templating-resources",
"version": "1.11.0",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
"templating",
"html"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/templating-resources/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-templating-resources.js",
"module": "dist/es2015/aurelia-templating-resources.js",
"typings": "dist/aurelia-templating-resources.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/templating-resources"
},
"scripts": {
"test": "karma start --single-run",
"test:watch": "karma start",
"test:debugger": "karma start --browsers ChromeDebugging",
"prebuild": "rimraf dist",
"build": "rollup -c",
"build:dts": "dts-bundle-generator -o dist/aurelia-templating-resources.d.ts src/aurelia-templating-resources.ts",
"changelog": "node ./build/changelog.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"precut-release": "npm run test",
"cut-release": "npm run lint && npm run build && npm run build:dts && gulp prepare-release"
},
"files": [
"dist",
"doc",
"typings.json"
],
"jspm": {
"registry": "npm",
"jspmPackage": true,
"main": "aurelia-templating-resources",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"peerDependencies": {
"aurelia-binding": "^2.0.0",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-loader": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.3.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0",
"aurelia-templating": "^1.8.1"
},
"dependencies": {
"aurelia-binding": "^2.0.0",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-loader": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.3.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0",
"aurelia-templating": "^1.8.1"
},
"devDependencies": {
"aurelia-bootstrapper": "^1.0.0",
"aurelia-event-aggregator": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-history-browser": "^1.0.0",
"aurelia-loader-default": "^1.0.0",
"aurelia-pal-browser": "^1.0.0",
"aurelia-polyfills": "^1.0.0",
"aurelia-templating-binding": "^1.0.0",
"aurelia-templating-resources": "^1.0.0",
"aurelia-templating-router": "^1.0.0",
"aurelia-testing": "^0.5.0",
"babel": "babel-core@^5.8.24",
"babel-runtime": "^5.8.24",
"core-js": "^2.0.3"
}
},
"dependencies": {
"aurelia-binding": "^2.0.0",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-loader": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.3.0",
"aurelia-path": "^1.0.0",
"aurelia-task-queue": "^1.0.0",
"aurelia-templating": "^1.8.1"
},
"devDependencies": {
"@types/jasmine": "^3.3.12",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-testing": "^1.0.0",
"aurelia-webpack-plugin": "^3.0.0",
"conventional-changelog": "^3.1.3",
"dts-bundle-generator": "^2.1.0",
"gulp": "^3.9.1",
"gulp-bump": "^3.1.3",
"gulp-conventional-changelog": "^2.0.15",
"html-loader": "^0.5.5",
"jasmine-core": "^3.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"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": "^3.0.5",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-typescript2": "^0.20.1",
"run-sequence": "^2.2.1",
"ts-loader": "^5.4.3",
"tslint": "^5.16.0",
"typescript": "^3.3.4000",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"yargs": "^4.8.1"
}
}