forked from html-next/vertical-collection
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.94 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
{
"name": "@html-next/vertical-collection",
"version": "2.0.0",
"description": "infinite-scroll, done right. done.",
"keywords": [
"occlusion",
"infinite",
"infinite-scroll",
"collection",
"grid",
"list-view",
"recycling",
"cloaking",
"performance",
"lists",
"ember-addon"
],
"license": "MIT",
"author": {
"name": "Chris Thoburn (@runspired)",
"url": "https://runspired.com"
},
"contributors": [
{
"name": "Chris Garrett (@pzuraq)",
"email": "[email protected]",
"url": "https://github.com/pzuraq"
},
{
"name": "Robert Wagner (@rwwagner90)",
"email": "[email protected]",
"url": "https://github.com/rwwagner90"
}
],
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": "https://github.com/html-next/vertical-collection.git",
"homepage": "https://github.com/html-next/vertical-collection",
"bugs": "https://github.com/html-next/vertical-collection/issues",
"scripts": {
"build": "ember build",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "npm-run-all lint:* test:*",
"test:ember": "ember test",
"test:ember-compatibility": "ember try:each"
},
"dependencies": {
"babel6-plugin-strip-class-callcheck": "^6.0.0",
"broccoli-funnel": "^2.0.2",
"broccoli-merge-trees": "^3.0.1",
"broccoli-rollup": "^4.1.1",
"ember-cli-babel": "^7.12.0",
"ember-cli-htmlbars": "^3.0.1",
"ember-cli-version-checker": "^3.1.3",
"ember-compatibility-helpers": "^1.2.1",
"ember-raf-scheduler": "0.2.0"
},
"devDependencies": {
"@ember/optional-features": "^0.7.0",
"bootstrap": "~3.3.5",
"broccoli-asset-rev": "^3.0.0",
"ember-cli": "~3.12.0",
"ember-cli-app-version": "^3.2.0",
"ember-cli-dependency-checker": "^3.1.0",
"ember-cli-eslint": "^5.1.0",
"ember-cli-fastboot": "^2.1.3",
"ember-cli-github-pages": "^0.2.2",
"ember-cli-htmlbars-inline-precompile": "^2.1.0",
"ember-cli-inject-live-reload": "^2.0.1",
"ember-cli-sri": "^2.1.1",
"ember-cli-template-lint": "^1.0.0-beta.1",
"ember-cli-uglify": "^3.0.0",
"ember-code-snippet": "^2.4.1",
"ember-data": "3.11.5",
"ember-disable-prototype-extensions": "^1.1.3",
"ember-export-application-global": "^2.0.0",
"ember-load-initializers": "^2.0.0",
"ember-native-dom-helpers": "^0.7.0",
"ember-perf-timeline": "^1.2.1",
"ember-qunit": "^4.5.1",
"ember-resolver": "^5.0.1",
"ember-source": "~3.12.0",
"ember-source-channel-url": "^2.0.1",
"ember-try": "^1.2.1",
"eslint-plugin-ember": "^6.7.1",
"eslint-plugin-node": "^9.1.0",
"loader.js": "^4.7.0",
"npm-run-all": "^4.1.5",
"qunit-dom": "^0.9.0"
},
"engines": {
"node": ">= 10.*"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}