-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
157 lines (157 loc) · 5.01 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "@ryersonlibrary/building-info-system",
"version": "0.6.1",
"description": "An information and wayfinding web application for buildings.",
"keywords": [
"ryerson",
"ryerson library",
"wayfinding",
"information",
"web",
"application",
"pwa",
"progressive",
"web",
"app"
],
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"unpkg": "dist/rl-bis.js",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --docs",
"build.dev": "stencil build --dev",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "del-cli dist/** dist www/** www",
"commit": "git-cz",
"dev": "stencil build --dev --watch --serve",
"lint": "npm run lint.sass && npm run lint.ts",
"lint.sass": "stylelint \"src/**/*.scss\"",
"lint.ts": "tslint --project tsconfig.json ./src/**/*.ts ./src/**/*.tsx",
"postinstall": "npm link @ryersonlibrary/web-components",
"pretest": "npm run lint",
"prerender": "stencil build --prerender",
"release": "node scripts/release.js",
"release.prepare": "node scripts/release.js --prepare",
"serve": "stencil build --serve",
"set.version": "node scripts/set-version.js",
"start": "npm run dev",
"test": "npm run test.spec && npm run test.e2e",
"test.e2e": "stencil test --e2e",
"test.spec": "stencil test --spec",
"test.watch": "stencil test --spec --e2e --watchAll"
},
"devDependencies": {
"@material/animation": "^1.0.0",
"@material/button": "^1.0.1",
"@material/card": "^1.0.1",
"@material/dialog": "^2.3.0",
"@material/drawer": "^1.0.1",
"@material/elevation": "^1.0.0",
"@material/icon-button": "^1.0.1",
"@material/layout-grid": "^0.41.0",
"@material/linear-progress": "^1.1.0",
"@material/list": "^1.0.1",
"@material/ripple": "^1.0.1",
"@material/rtl": "^0.42.0",
"@material/select": "^1.0.1",
"@material/tab": "^1.0.1",
"@material/tab-bar": "^1.0.1",
"@material/tab-indicator": "^1.0.0",
"@material/tab-scroller": "^1.0.1",
"@material/textfield": "^1.0.1",
"@material/top-app-bar": "^1.0.1",
"@material/typography": "^1.0.0",
"@ryersonlibrary/floorplans": "^1.0.1",
"@stencil/core": "^1.6.1",
"@stencil/postcss": "^1.0.0",
"@stencil/router": "^1.0.1",
"@stencil/sass": "^1.0.0",
"@types/autoprefixer": "^9.4.0",
"@types/jest": "24.0.18",
"@types/lodash": "^4.14.123",
"@types/node-sass": "^4.11.0",
"@types/puppeteer": "1.20.1",
"@types/ua-parser-js": "^0.7.33",
"ansi-colors": "^3.2.4",
"autoprefixer": "^9.5.0",
"child_process": "^1.0.2",
"codecov": "^3.2.0",
"commitizen": "^3.0.7",
"conventional-changelog-angular": "^5.0.3",
"conventional-changelog-cli": "^2.0.12",
"conventional-commits-parser": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"del-cli": "^1.1.0",
"execa": "^1.0.0",
"focus-trap": "^4.0.2",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.2",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"listr": "^0.14.3",
"lodash": "^4.17.11",
"ndx": "^1.0.1",
"ndx-compat": "^1.0.0",
"ndx-query": "^1.0.0",
"node-sass": "^4.12.0",
"puppeteer": "1.20.0",
"pwa-helpers": "^0.9.1",
"semver": "^5.6.0",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.1.0",
"stylelint-scss": "^3.5.4",
"stylelint-selector-bem-pattern": "^2.0.0",
"tslint": "^5.14.0",
"tslint-ionic-rules": "0.0.21",
"typescript": "^3.5.2",
"ua-parser-js": "^0.7.20",
"workbox-build": "4.3.1"
},
"author": "Ryerson University Library",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryersonlibrary/building-info-system.git"
},
"bugs": {
"url": "https://github.com/ryersonlibrary/building-info-system/issues"
},
"homepage": "https://github.com/ryersonlibrary/building-info-system#readme",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"config": {
"validate-commit-msg": {
"helpMessage": "%s\nNOTE: Please see angular's commit message guidelines (https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#commits) for information on how to format commit messages.\n\nAs an example, here is a valid commit message: 'docs(slider): Document slider public api'\n\nIf this commit is on a development / WIP branch, you can disable this by running `git commit --no-verify`.",
"scope": {
"allowed": [
"views"
],
"validate": true
}
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {}
}