-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
95 lines (95 loc) · 3.2 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
{
"name": "aurelia-ui-virtualization",
"version": "1.0.0-rc3",
"description": "A plugin that provides a virtualized repeater and other virtualization services.",
"keywords": [
"aurelia",
"virtualization",
"plugin"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/ui-virtualization/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-ui-virtualization.js",
"module": "dist/native-modules/aurelia-ui-virtualization.js",
"browser": "dist/umd/aurelia-ui-virtualization.js",
"unpkg": "dist/umd-es2015/aurelia-ui-virtualization.js",
"typings": "dist/types/aurelia-ui-virtualization.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/ui-virtualization"
},
"files": [
"dist",
"src",
"doc/CHANGELOG.md",
"LICENSE",
"README.md",
"typings.json"
],
"scripts": {
"dev": "cd sample/sample-v-ui-app && npm run dev",
"build:demo": "cd sample/sample-v-ui-app && npm run build:demo",
"test": "karma start --single-run",
"test:watch": "karma start",
"test:debugger": "karma start --browsers ChromeDebugging",
"lint": "eslint .",
"build": "rollup -c",
"build:dts": "dts-bundle-generator -o dist/types/aurelia-ui-virtualization.d.ts src/aurelia-ui-virtualization.ts",
"postbuild": "npm run build:dts",
"typedoc": "typedoc src/aurelia-ui-virtualization.ts --json doc/api.json",
"posttypedoc": "node doc/cleanup.js",
"changelog": "standard-version -t \"\" -i doc/CHANGELOG.md -s --skip.commit --skip.tag",
"precut-release": "npm run test && npm run lint && npm run build",
"cut-release": "npm run changelog",
"postcut-release": "npm run typedoc"
},
"dependencies": {
"aurelia-binding": "^2.1.7",
"aurelia-dependency-injection": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-logging-console": "^1.0.0",
"aurelia-path": "^1.1.7",
"aurelia-task-queue": "^1.0.0",
"aurelia-templating": "^1.11.1",
"aurelia-templating-resources": "^1.14.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/estree": "^0.0.51",
"@types/jasmine": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"aurelia-bootstrapper": "^2.4.0",
"aurelia-framework": "^1.4.1",
"aurelia-loader-webpack": "^2.2.1",
"aurelia-pal": "^1.8.0",
"aurelia-pal-browser": "^1.8.0",
"aurelia-polyfills": "^1.3.0",
"aurelia-router": "^1.7.1",
"aurelia-templating-router": "^1.5.0",
"aurelia-testing": "^1.0.0",
"aurelia-webpack-plugin": "^5.0.3",
"dts-bundle-generator": "^6.7.0",
"eslint": "^8.13.0",
"jasmine-core": "^4.1.0",
"karma": "^6.3.18",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"rimraf": "^2.6.3",
"rollup": "^2.70.2",
"standard-version": "^9.3.2",
"ts-loader": "^5.3.3",
"tslib": "^2.3.1",
"typedoc": "^0.22.15",
"typescript": "^4.6.3",
"webpack": "^5.72.0"
}
}