-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.76 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.76 KB
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
{
"name": "@heseya/store-core",
"version": "7.1.0-beta.5",
"author": {
"name": "Heseya"
},
"license": "MIT",
"main": "dist/index.umd.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"keywords": [],
"scripts": {
"clean": "shx rm -rf dist coverage .rpt2_cache",
"dev": "cross-env NODE_ENV=development DEBUG=1 jest",
"watch": "cross-env NODE_ENV=production EXTERNAL=1 rollup -c --watch -f umd -o dist/index.umd.js",
"build": "npm run lint && npm run clean && npm run build:esm && npm run build:umd && npm run build:min",
"build:esm": "cross-env NODE_ENV=production EXTERNAL=1 rollup -c -f esm -o dist/index.js",
"build:umd": "cross-env NODE_ENV=production rollup -c -f umd -o dist/index.umd.js",
"build:min": "cross-env NODE_ENV=production MINIFY=1 rollup -c -f umd -o dist/index.min.js",
"docs:build": "typedoc --out docs src/index.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --skip-unstable -t v",
"lint": "eslint \"src/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\"",
"check-types": "tsc --noemit",
"test": "cross-env NODE_ENV=test jest",
"test:mutations": "stryker run",
"test:coverage": "yarn test --coverage",
"prepublish": "yarn build"
},
"dependencies": {
"flat": "^5.0.2",
"form-data": "^4.0.0",
"md5": "^2.3.0",
"performant-array-to-tree": "^1.11.0",
"query-string": "^7.1.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@koa/cors": "^3.1.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@stryker-mutator/core": "^6.2.3",
"@stryker-mutator/jest-runner": "^6.2.3",
"@types/assert": "^1.5.1",
"@types/flat": "^5.0.5",
"@types/jest": "^28.0.7",
"@types/json-stringify-safe": "^5.0.0",
"@types/koa": "^2.13.1",
"@types/koa-router": "^7.4.2",
"@types/koa-static": "^4.0.1",
"@types/koa__cors": "^3.0.2",
"@types/md5": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"axios": "^0.21.1",
"axios-mock-adapter": "1.21.2",
"babel-eslint": "^10.1.0",
"conventional-changelog": "^3.1.25",
"cross-env": "^7.0.2",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^28.0.7",
"jest-fetch-mock": "^3.0.3",
"koa": "^2.13.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa-views": "^7.0.1",
"nodemon": "^2.0.7",
"power-assert": "^1.6.1",
"prettier": "^2.3.2",
"rollup": "^2.77.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"rollup-plugin-visualizer": "^5.9.2",
"shx": "^0.3.2",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.2",
"webpack": "^4.44.1",
"webpack-espower-loader": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e .git/COMMIT_EDITMSG",
"pre-commit": "npm run lint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
}
}