-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.32 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
{
"name": "aurelia-portal-attribute",
"version": "1.4.0",
"description": "A plugin to customize rendering process in Aurelia application.",
"keywords": [
"aurelia",
"plugin",
"skeleton",
"portal",
"portal attribute",
"portal plugin"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/bigopon/aurelia-portal-attribute/issues"
},
"license": "MIT",
"author": "Binh Vo <[email protected]> (https://github.com/bigopon)",
"main": "dist/commonjs/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"lint": "cross-env tslint --project tsconfig.json",
"pretest": "cross-env npm run lint",
"test": "karma start --single-run",
"test:watch": "karma start",
"test:debugger": "karma start --browsers ChromeDebugging",
"prebuild": "cross-env rimraf dist",
"precut-release": "npm run test",
"cut-release": "git add dist && standard-version -t \"\" -i doc/CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/bigopon/aurelia-portal-attribute"
},
"dependencies": {
"aurelia-binding": "^2.0.0",
"aurelia-pal": "^1.4.0",
"aurelia-templating": "^1.8.0"
},
"devDependencies": {
"@types/jasmine": "^3.5.10",
"aurelia-bootstrapper": "^2.2.0",
"aurelia-dependency-injection": "^1.3.2",
"aurelia-loader": "^1.0.0",
"aurelia-logging": "^1.3.1",
"aurelia-metadata": "^1.0.3",
"aurelia-pal-browser": "^1.3.0",
"aurelia-path": "^1.1.1",
"aurelia-polyfills": "^1.2.2",
"aurelia-task-queue": "^1.2.1",
"aurelia-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.2",
"jasmine-core": "^3.5.0",
"karma": "^5.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^3.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"rimraf": "^2.6.2",
"rollup": "^2.7.6",
"rollup-plugin-typescript2": "^0.27.0",
"standard-version": "^7.1.0",
"ts-loader": "^7.0.2",
"tslint": "^6.1.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"jspm": {
"registry": "npm",
"jspmPackage": true,
"main": "index",
"format": "cjs",
"directories": {
"dist": "dist/commonjs"
}
}
}