-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 KB
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
{
"name": "@uportal/card-components",
"version": "0.1.0",
"description": "Card Web Components for the uPortal ecosystem",
"main": "dist/index.js",
"scripts": {
"css-build": "node-sass static/scss/my-card.scss static/css/my-card.css --output-style compressed",
"css-watch": "npm run css-build -- --watch",
"prebuild": "rm -rf dist | npm run css-build",
"build": "rollup -c",
"postbuild": "cp -r static/** dist | cp -r node_modules/@fortawesome/fontawesome-free/svgs/** dist",
"prestart": "npm run build",
"start": "serve dist",
"test": "eslint src && stylelint static/scss",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"format": "prettier --write '**/*.{css,js,json,md,scss}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cousquer/CardWebComponents.git"
},
"author": "Christian Cousquer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cousquer/CardWebComponents/issues"
},
"homepage": "https://github.com/cousquer/CardWebComponents#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{css,js,json,md,scss}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.2",
"hyperhtml": "2.33.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.17.3",
"gh-pages": "^3.0.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"node-sass": "^4.13.0",
"prettier": "^2.0.0",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.2",
"serve": "^11.0.1",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^20.0.0"
}
}