-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "@jaspero/modular",
"version": "1.33.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run dev:examples:svelte\"",
"dev": "rollup --watch -c rollup.config.js",
"dev:examples:svelte": "npm run dev --prefix examples/svelte",
"dev:components": "npm run dev:build --prefix components",
"build": "rollup -c rollup.config.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaspero/modular.git"
},
"author": {
"name": "Jaspero Ltd",
"email": "[email protected]"
},
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/Jaspero/modular/issues"
},
"homepage": "https://github.com/Jaspero/modular#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "10.0.1",
"concurrently": "7.6.0",
"rollup": "3.5.1",
"rollup-plugin-dts": "5.0.0",
"tslib": "2.4.1",
"typescript": "4.9.3",
"semantic-release": "20.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/changelog": "6.0.2"
},
"dependencies": {
"@jaspero/modular-components": "file:./components",
"ajv": "8.11.2",
"jsonpointer": "5.0.1"
},
"release": {
"branches": [
"main"
],
"pkgRoot": ".",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
}
}