-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.81 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
{
"name": "@ryersonlibrary/web-components",
"version": "0.7.0",
"description": "Common web-components for Ryerson University Library.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"unpkg": "/dist/rl-wc.js",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && stencil build --docs",
"build.css": "npm run css.sass && npm run css.minify",
"build.dev": "npm run clean && stencil build --dev",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "node scripts/clean.js",
"commit": "git-cz",
"css.minify": "cleancss -02 -o ./css/rl-wc.components.css ./css/rl-wc.components.css",
"css.sass": "node-sass --output ./css src/css --output-style compressed",
"lint": "npm run lint.ts && npm run lint.sass",
"lint.sass": "stylelint config stylelint.yml 'src/**/*.scss'",
"lint.ts": "tslint --project .",
"release": "node scripts/release.js",
"release.prepare": "node scripts/release.js --prepare",
"set.version": "node scripts/set-version.js",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.spec": "stencil test --spec",
"test.e2e": "stencil test --e2e",
"test.treeshake": "agadoo dist/collection/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryersonlibrary/web-components"
},
"bugs": {
"url": "https://github.com/ryersonlibrary/web-components/issues"
},
"homepage": "https://library.ryerson.ca",
"keywords": [
"ryerson",
"library",
"stencil",
"component",
"web",
"component",
"app",
"webapp",
"progressive",
"web",
"app",
"pwa"
],
"author": "Ryerson University Library",
"license": "MIT",
"devDependencies": {
"@material/button": "^2.3.0",
"@material/dialog": "^2.3.0",
"@material/elevation": "^1.1.0",
"@material/form-field": "^2.3.0",
"@material/select": "^2.3.0",
"@material/textfield": "^2.3.0",
"@stencil/core": "^1.3.2",
"@stencil/sass": "^1.0.1",
"@stencil/utils": "0.0.5",
"@types/jest": "24.0.18",
"@types/node-sass": "^4.11.0",
"@types/puppeteer": "1.19.1",
"agadoo": "^1.0.1",
"ansi-colors": "^3.2.4",
"conventional-changelog-cli": "^2.0.21",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"git-cz": "^3.0.1",
"inquirer": "^6.3.1",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"listr": "^0.14.3",
"puppeteer": "1.19.0",
"semver": "^6.1.1",
"stylelint": "^10.0.1",
"stylelint-order": "^3.0.0",
"tslint": "^5.17.0",
"tslint-ionic-rules": "0.0.21",
"tslint-react": "^4.0.0",
"typescript": "^3.5.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {}
}