-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.86 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
{
"name": "@swivel-finance/ui",
"description": "UI behaviors and custom elements for Swivel frontends.",
"version": "0.0.23",
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Swivel-Finance/ui.git"
},
"author": "Alexander Wende",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swivel-Finance/ui/issues"
},
"homepage": "https://github.com/Swivel-Finance/ui#readme",
"scripts": {
"start": "npm-run-all clean build --parallel \"build:watch -- --preserveWatchOutput\" css:watch serve",
"clean": "shx rm -rf ./coverage ./dist ./out",
"commit": "cz",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"css": "postcss ./src/**/*.css --base ./src --dir ./dist/src",
"css:prod": "postcss ./src/**/*.css --base ./src --use postcss-import cssnano --no-map --dir ./dist/src",
"css:watch": "npm run css -- --watch",
"bundle": "rollup -c",
"postbundle": "postcss ./demo/**/main.css --base ./demo --use postcss-import --no-map --dir ./out",
"lint": "eslint src/ demo/",
"lint:fix": "npm run lint -- --fix",
"test": "web-test-runner \"./dist/test/**/*.spec.js\"",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"serve": "web-dev-server --open \"./demo/index.html\"",
"prerelease": "npm-run-all clean lint build css:prod",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"release:dry": "npm run release -- --dry-run",
"release:publish": "git push --follow-tags origin main && npm run pub",
"pub": "npm publish ./dist/src --access public",
"prepub": "shx cp ./package.json ./README.md ./dist/src",
"postpub": "shx rm ./dist/src/package.json ./dist/src/README.md",
"pack": "npm run prepub && npm pack ./dist/src && npm run postpub",
"vercel": "npm-run-all build bundle"
},
"devDependencies": {
"@open-wc/testing": "^3.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@swivel-finance/eslint-config": "^0.1.0",
"@web/dev-server": "^0.1.30",
"@web/rollup-plugin-copy": "^0.3.0",
"@web/rollup-plugin-html": "^1.10.3",
"@web/test-runner": "^0.13.27",
"cssnano": "^5.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.4",
"lit": "^2.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"rollup": "^2.75.7",
"shx": "^0.3.4",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},
"peerDependencies": {
"lit": "^2.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}