-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.6 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": "@marianmeres/store",
"version": "1.6.4",
"description": "Basic store. Svelte store contract compatible.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/*",
"prettier": "prettier --write \"{src,tests}/**/*.{js,ts,json}\"",
"release": "release -v minor",
"release:patch": "release -v patch",
"test": "test-runner",
"test:watch": "nodemon -q -w \"src/**/*.*\" -w \"tests/**/*.*\" -x test-runner --",
"build": "npm run clean && rollup -c",
"dev": "npm run clean && rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marianmeres/store.git"
},
"keywords": [
"store"
],
"author": "Marian Meres <marian@meres.sk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marianmeres/store/issues"
},
"homepage": "https://github.com/marianmeres/store#readme",
"devDependencies": {
"@marianmeres/clog": "^1.0.0",
"@marianmeres/release": "^1.0.0",
"@marianmeres/test-runner": "^2.0.13",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.10.4",
"lodash": "^4.17.21",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.22.4",
"terser": "^5.16.1",
"tslib": "^2.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@marianmeres/pubsub": "^1.2.5"
}
}