-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
128 lines (128 loc) · 4.66 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-materialize-bridge",
"version": "1.6.4",
"registry": "github",
"description": "Aurelia interface to http://materializecss.com/",
"keywords": [
"aurelia",
"plugin",
"materialize"
],
"homepage": "https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge",
"bugs": {
"url": "https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge/issues"
},
"license": "MIT",
"author": "aurelia-ui-toolkits",
"directories": {
"lib": "dist/system"
},
"standard-version": {
"infile": "doc/CHANGELOG.md"
},
"scripts": {
"test": "gulp test",
"ci": "gulp ci",
"lint": "tslint --project tsconfig.json",
"pretest": "npm run lint",
"build:amd": "tsc --outDir dist/amd --module amd",
"postbuild:amd": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/amd",
"build:commonjs": "tsc --outDir dist/commonjs --module commonjs",
"postbuild:commonjs": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/commonjs",
"build:es2015": "tsc --outDir dist/es2015 --module es2015 --target es6",
"postbuild:es2015": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/es2015",
"build:native-modules": "tsc --outDir dist/native-modules --module es2015",
"postbuild:native-modules": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/native-modules",
"build:system": "tsc --outDir dist/system --module system",
"postbuild:system": "copyfiles --up 1 src/**/*.html src/**/*.css src/**/*.map dist/system",
"prebuild": "rimraf dist && npm run build-md-colors",
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"",
"postbuild": "concurrently \"npm run postbuild:amd\" \"npm run postbuild:commonjs\" \"npm run postbuild:es2015\" \"npm run postbuild:native-modules\" \"npm run postbuild:system\"",
"copytodemo": "copyfiles --up 1 dist/**/*.* ../demo-materialize/node_modules/aurelia-materialize-bridge/dist",
"release": "standard-version",
"sass:copy": "rimraf sass-copy && copyfiles --up 3 \"node_modules/materialize-css/sass/**/*.scss\" sass-copy",
"sass:replace-sass": "ts-node ./replace-sass.ts",
"sass:build": "sass sass-copy/materialize.scss sass-copy/materialize.css --no-source-map --style=compressed",
"sass:replace-css": "ts-node ./replace-css.ts",
"build-md-colors": "npm run sass:copy && npm run sass:replace-sass && npm run sass:build && npm run sass:replace-css"
},
"main": "dist/commonjs/index.js",
"typings": "dist/commonjs/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia-ui-toolkits/aurelia-materialize-bridge"
},
"devDependencies": {
"aurelia-framework": ">=1.2.0",
"aurelia-router": ">=1.5.0",
"aurelia-typed-observable-plugin": ">=0.3.5",
"aurelia-validation": ">=1.1.3",
"tslib": ">=1.9.0",
"@types/materialize-css": "^1.0.6",
"@types/node": "^12.11.6",
"concurrently": "^5.0.0",
"copyfiles": "^2.1.1",
"materialize-css": "^1.0.0",
"replace-in-file": "^4.2.0",
"rimraf": "^3.0.0",
"sass": "^1.23.1",
"standard-version": "^8.0.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"aurelia-framework": ">=1.2.0",
"aurelia-router": ">=1.5.0",
"aurelia-typed-observable-plugin": ">=0.3.5",
"aurelia-validation": ">=1.1.3",
"tslib": ">=1.9.0",
"materialize-css": ">=1.0.0"
},
"jspm": {
"main": "index",
"directories": {
"lib": "dist/system"
},
"peerDependencies": {
"aurelia-framework": "npm:aurelia-framework@^1.3.0",
"aurelia-router": "npm:aurelia-router@^1.6.1",
"aurelia-typed-observable-plugin": "npm:aurelia-typed-observable-plugin@^0.4.0",
"aurelia-validation": "npm:aurelia-validation@^1.2.2",
"tslib": "npm:tslib@^1.9.3"
}
},
"aurelia": {
"documentation": {
"links": [
{
"rel": "license",
"mediaType": "text/plain",
"title": "The MIT License (MIT)",
"href": "LICENSE"
},
{
"rel": "version-history",
"mediaType": "text/markdown",
"title": "Change Log",
"href": "doc/CHANGELOG.md"
}
]
},
"import": {
"dependencies": [
{
"name": "aurelia-materialize-bridge",
"main": "index",
"path": "../node_modules/aurelia-materialize-bridge/dist/amd",
"resources": [
"**/*.{css,html}"
]
}
],
"tutorial": [
"1. in main.js add .plugin('aurelia-materialize-bridge')"
]
}
}
}