-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.55 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "aurelia-mdc-pages-animator",
"description": "Add back and forward classes to router-view and some classes for page animation.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/ullfis/aurelia-mdc-pages-animator.git"
},
"bugs": {
"url": "https://github.com/ullfis/aurelia-mdc-pages-animator/issues"
},
"homepage": "https://github.com/ullfis/aurelia-mdc-pages-animator",
"license": "MIT",
"author": {
"name": "Ullfis",
"email": "",
"url": "https://github.com/ullfis"
},
"main": "dist/amd/index.js",
"typings": "dist/amd/index.d.ts",
"scripts": {
"start": "au run -w",
"lint": "cross-env tslint --project tsconfig.json",
"___BUILD___": "---- BUILD DIST ----",
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:es2017\" \"npm run build:native-modules\" \"npm run build:system\" \"npm run build:scss\"",
"prebuild": "cross-env rimraf dist",
"build:amd": "cross-env tsc --project tsconfig.dist.json --outDir dist/amd --module amd",
"build:commonjs": "cross-env tsc --project tsconfig.dist.json --outDir dist/commonjs --module commonjs",
"build:es2017": "cross-env tsc --project tsconfig.dist.json --outDir dist/es2017 --module es2015 --target es2017",
"build:es2015": "cross-env tsc --project tsconfig.dist.json --outDir dist/es2015 --module es2015 --target es2015",
"build:native-modules": "cross-env tsc --project tsconfig.dist.json --outDir dist/native-modules --module es2015",
"build:system": "cross-env tsc --project tsconfig.dist.json --outDir dist/system --module system",
"build:scss": "au build-dist-scss",
"___RELEASE___": "---- BUILD DIST, BUMP VERSION, CREATE CHANGELOG AND ADD CHANGES TO GIT ----",
"prerelease": "npm run build",
"release": "git add -A",
"postrelease": "standard-version -a",
"___DOCS___": "---- BUILD DOCS ----",
"predocs": "rimraf scripts",
"docs": "au build --env prod",
"postdocs": "npm run builddocs",
"prebuilddocs": "rimraf docs",
"builddocs": "au build-docs"
},
"dependencies": {
"aurelia-logging": "^1.3.1",
"aurelia-pal": "^1.4.0",
"aurelia-templating": "^1.4.2"
},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^8.0.26",
"aurelia-animator-css": "github:ullfis/animator-css",
"aurelia-bootstrapper": "^2.1.1",
"aurelia-cli": "^0.31.3",
"aurelia-mdc-bridge": "^0.7.1",
"aurelia-tools": "^1.0.0",
"bluebird": "^3.4.1",
"browser-sync": "^2.18.13",
"concurrently": "^3.5.0",
"connect-history-api-fallback": "^1.3.0",
"cross-env": "^5.0.5",
"debounce": "^1.0.2",
"event-stream": "^3.3.4",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-changed-in-place": "^2.2.0",
"gulp-html-replace": "^1.6.2",
"gulp-htmlmin": "^3.0.0",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-tslint": "^8.1.2",
"gulp-typescript": "^3.2.2",
"gulp-watch": "^4.3.11",
"html-minifier": "^3.5.3",
"minimatch": "^3.0.4",
"prismjs": "^1.6.0",
"requirejs": "^2.3.5",
"rimraf": "^2.6.1",
"text": "github:requirejs/text#latest",
"through2": "^2.0.3",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"uglify-js": "^3.0.28",
"vinyl-fs": "^2.4.4"
},
"packageImporter": "https://github.com/aurelia/cli/pull/454",
"aurelia": {
"import": {
"dependencies": [
{
"name": "aurelia-mdc-pages-animator",
"path": "../node_modules/aurelia-mdc-pages-animator/dist/amd",
"main": "index",
"resources": [
"index.js",
"aurelia-mdc-pages-animator.js",
"pages.css"
]
}
],
"tutorial": [
"",
"1. in main.js add:",
" aurelia.use.plugin('aurelia-mdc-pages-animator')",
"",
" remember to also add plugin 'aurelia-animator-css'",
"",
"2. in app.html add the following:",
" <require from=\"aurelia-mdc-pages-animator/pages.css\"></require>",
" <router-view swap-order=\"with\" aurelia-mdc-pages-animator></router-view>",
"",
"3. add classes to your pages:",
" <template>",
" <div class=\"pages pages-detail au-animate\">",
" ...",
"",
"more information:",
" https://github.com/ullfis/aurelia-mdc-pages-animator",
"",
""
]
}
}
}