-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
175 lines (175 loc) · 4.2 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "dragonbinder",
"version": "2.2.1",
"description": "1kb progressive state management library inspired by Vuex.",
"source": "lib/index.js",
"main": "dist/dragonbinder.min.js",
"module": "dist/dragonbinder.mjs",
"unpkg": "dist/dragonbinder.min.js",
"browser": "dist/dragonbinder.min.js",
"exports": {
"import": "./dist/dragonbinder.mjs",
"require": "./dist/dragonbinder.js"
},
"repository": "[email protected]:Masquerade-Circus/dragonbinder.git",
"author": "Masquerade Circus <[email protected]>",
"license": "Apache-2.0",
"private": false,
"keywords": [
"store",
"state",
"state-management",
"reactive",
"vuex",
"redux",
"flux",
"manager",
"progressive"
],
"engines": {
"node": ">=8.15.0"
},
"engineStrict": true,
"scripts": {
"build": "node build.js",
"dev:test": "ava --watch --verbose",
"dev:test:nyc": "nodemon -w ./tests -w ./lib --exec 'nyc --reporter=lcov --reporter=text ava --verbose'",
"test": "npm run test:ava && npm run test:esm && npm run test:cjs && npm run test:min",
"test:ava": "nyc ava",
"test:esm": "node tests/test.mjs",
"test:cjs": "node tests/test.cjs",
"test:min": "node tests/test.min.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "docma -c docma.json",
"docs:watch": "nodemon -w ./lib -w ./*.md -w ./docma.json --exec 'npm run docs'",
"docs:serve": "docma serve",
"commit": "git add . && git-cz",
"release": "release-it --verbose",
"release-test": "release-it --dry-run --verbose"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.0.0",
"ava": "^4.3.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"docma": "^3.2.2",
"esbuild": "^0.14.48",
"eslint": "^8.19.0",
"eslint-plugin-sonarjs": "^0.13.0",
"esm": "^3.2.25",
"expect": "^28.1.1",
"nyc": "^15.1.0",
"release-it": "^15.1.1",
"terser": "^5.14.1"
},
"overrides": {
"minimist": "^1.2.6"
},
"ava": {
"files": [
"tests/**/*_test.js"
],
"ignoredByWatcher": [
"dist",
"node_modules",
"docs"
],
"failWithoutAssertions": false,
"require": [
"esm"
]
},
"nyc": {
"include": [
"lib"
],
"exclude": [
"build.js",
"tests",
"dist",
"node_modules"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles"
},
{
"type": "chore",
"section": "Miscellaneous Chores"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integration"
}
]
}
}
},
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"before:init": [
"npm run build",
"npm run test",
"npm run docs"
]
}
},
"funding": "https://github.com/sponsors/Masquerade-Circus"
}