forked from DockYard/ember-router-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.14 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
{
"name": "ember-router-scroll",
"version": "0.5.0",
"description": "Scroll to top with preserved browser history scroll position",
"keywords": [
"ember-addon",
"ember-router-scroll",
"popstateEvent",
"browser scroll"
],
"license": "MIT",
"author": "Jason Farmer <jacefarm@gmail.com> and Benny C. Wong <bwong337@gmail.com>",
"contributors": [
{
"name": "Benny Wong",
"email": "bwong337@gmail.com"
},
{
"name": "Jason Farmer",
"email": "jacefarm@gmail.com"
},
{
"name": "Brian Cardarella",
"url": "https://github.com/bcardarella"
},
{
"name": "Arjan Singh",
"url": "https://github.com/arjansingh"
},
{
"name": "Brian Gonzalez",
"url": "https://github.com/briangonzalez"
},
{
"name": "Robert Wagner",
"url": "https://github.com/rwwagner90"
},
{
"name": "Scott Newcomer",
"url": "https://github.com/snewcomer"
}
],
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/dollarshaveclub/ember-router-scroll.git"
},
"bugs": {
"url": "https://github.com/dollarshaveclub/ember-router-scroll/issues"
},
"homepage": "https://dollarshaveclub.github.io/ember-router-scroll/",
"scripts": {
"build": "ember build",
"lint:js": "eslint ./*.js addon addon-test-support app config lib server test-support tests",
"start": "ember serve",
"test": "ember test",
"deploy": "ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\"; git push; git checkout -",
"test:all": "ember try:each"
},
"dependencies": {
"ember-app-scheduler": "^0.2.0",
"ember-cli-babel": "^6.6.0",
"ember-getowner-polyfill": "^2.0.1"
},
"devDependencies": {
"broccoli-asset-rev": "^2.4.5",
"ember-cli": "~3.1.2",
"ember-cli-dependency-checker": "^2.0.0",
"ember-cli-eslint": "^4.2.1",
"ember-cli-github-pages": "^0.2.0",
"ember-cli-htmlbars": "^2.0.1",
"ember-cli-htmlbars-inline-precompile": "^1.0.0",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-qunit": "^4.1.1",
"ember-cli-shims": "^1.2.0",
"ember-cli-sri": "^2.1.0",
"ember-cli-uglify": "^2.0.0",
"ember-disable-prototype-extensions": "^1.1.2",
"ember-export-application-global": "^2.0.0",
"ember-load-initializers": "^1.0.0",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-resolver": "^4.0.0",
"ember-source": "~3.1.0",
"ember-source-channel-url": "^1.0.1",
"ember-try": "^0.2.23",
"eslint-plugin-ember": "^5.0.0",
"eslint-plugin-node": "^6.0.1",
"loader.js": "^4.2.3"
},
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://dollarshaveclub.github.io/ember-router-scroll/"
},
"changelog": {
"repo": "dollarshaveclub/ember-router-scroll",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
}
}