-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.23 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
80
81
82
83
84
85
86
87
{
"name": "@polysensus/blobcodex",
"type": "module",
"version": "0.0.10",
"description": "json format for storing indexed and encrpted blobs of data",
"main": "dist/blobcodex.esm.js",
"module": "dist/blobcodex.esm.js",
"browser": "dist/blobcodex.esm.js",
"eslintConfig": {
"env": {
"es2021": true
},
"extends": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"rules": {}
},
"eslintIgnore": [
"rollup.config.js"
],
"scripts": {
"release": "release-it",
"prepare": "rollup -c",
"build": "rollup -c",
"test": "npx mocha './**/*.mocha.js'",
"lint": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check . && eslint .",
"format": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/polysensus/blobcodex.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/polysensus/blobcodex/issues"
},
"homepage": "https://github.com/polysensus/blobcodex#readme",
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{}
]
}
}
}
},
"devDependencies": {
"@release-it/conventional-changelog": "^7.0.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.0",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"prettier": "^3.0.2",
"release-it": "^16.1.5",
"rollup": "^3.28.0",
"rollup-plugin-polyfill-node": "^0.12.0"
}
}