-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "@marianmeres/switch-store",
"version": "1.6.2",
"description": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/*",
"prettier": "prettier --write \"{src,tests}/**/*.{js,ts,json}\"",
"release": "release -v minor",
"release:patch": "release -v patch",
"xxx-test": "node --loader ts-node/esm tests/index.ts",
"xxx-test:watch": "nodemon --delay 0.5 -q -w \"src/**/*.*\" -w \"tests/**/*.*\" -x \"node --loader ts-node/esm tests/index.ts\" --",
"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/switch-store.git"
},
"keywords": [
"store"
],
"author": "Marian Meres <marian@meres.sk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marianmeres/switch-store/issues"
},
"homepage": "https://github.com/marianmeres/switch-store#readme",
"devDependencies": {
"@marianmeres/clog": "^1.0.1",
"@marianmeres/release": "^1.1.2",
"@marianmeres/test-runner": "^2.0.15",
"@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",
"mkdirp": "^3.0.1",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.9.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@marianmeres/store": "^1.6.3"
}
}