-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.28 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
{
"name": "aurelia-swipeout",
"version": "1.0.5",
"description": "A custom element for iOS style swipeout actions, backed by Hammer.js",
"keywords": [
"aurelia",
"custom",
"element",
"swipe",
"swipeout",
"hammer"
],
"homepage": "https://github.com/michaelbull/aurelia-swipeout",
"bugs": {
"url": "https://github.com/michaelbull/aurelia-swipeout/issues"
},
"license": "ISC",
"author": {
"name": "Michael Bull",
"url": "https://www.michael-bull.com"
},
"files": [
"dist",
"src",
"style"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/michaelbull/aurelia-swipeout"
},
"scripts": {
"start": "webpack-dev-server --env=dev --inline --hot",
"build": "webpack --env=prod",
"tsc": "tsc --project tsconfig.build.json",
"html": "copyfiles --up 1 src/**/*.html dist",
"sass": "node-sass style/swipeout.scss dist/swipeout.css",
"postcss": "postcss dist/*.css --dir dist",
"dist": "rimraf dist && npm run tsc && npm run html && npm run sass && npm run postcss",
"deploy": "rimraf build && npm run build && push-dir --dir=build --branch=gh-pages",
"prepublish": "npm run dist"
},
"dependencies": {
"hammerjs": "2.0.8"
},
"devDependencies": {
"@types/hammerjs": "2.0.35",
"@types/webpack": "3.8.1",
"@types/webpack-env": "1.13.2",
"aurelia-bootstrapper": "2.1.1",
"aurelia-event-aggregator": "1.0.1",
"aurelia-framework": "1.1.5",
"aurelia-history-browser": "1.1.0",
"aurelia-logging-console": "1.0.0",
"aurelia-templating-binding": "1.4.0",
"aurelia-templating-resources": "1.5.4",
"aurelia-templating-router": "1.2.0",
"aurelia-webpack-plugin": "2.0.0-rc.5",
"awesome-typescript-loader": "3.4.0",
"bootstrap": "4.0.0-alpha.6",
"copyfiles": "1.2.0",
"css-loader": "0.28.7",
"cssnano": "3.10.0",
"cssnano-preset-advanced": "4.0.0-rc.2",
"extract-text-webpack-plugin": "3.0.2",
"html-loader": "0.5.1",
"html-webpack-plugin": "2.30.1",
"node-sass": "4.7.2",
"postcss-cli": "4.1.1",
"push-dir": "0.4.1",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"style-loader": "0.19.0",
"typescript": "2.6.1",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4"
}
}