-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
{
"private": true,
"workspaces": [
"packages/*"
],
"devEngines": {
"node": "18.x || 20.x || 22.x"
},
"description": "A concise & flexible state model for Redux/MobX/Vuex, etc.",
"scripts": {
"commit": "yarn git-cz",
"test:dev": "cross-env NODE_ENV=development jest --config ./scripts/jest/dev.config.json",
"test:useES2015": "cross-env NODE_ENV=development jest --config ./scripts/jest/useES2015.config.json",
"test": "yarn test:dev",
"check:type": "tsc --noEmit",
"build": "cross-env NODE_ENV=production ts-node scripts/build.ts",
"clean": "lerna exec rimraf ./dist ./build",
"update:version": "lerna version --amend --no-git-tag-version",
"publish": "lerna exec --no-private --no-bail -- npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/usm.git"
},
"keywords": [],
"authors": [
"Michael Lin <[email protected]> (https://github.com/unadlib)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/usm/issues"
},
"homepage": "https://github.com/unadlib/usm#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/fs-extra": "^11.0.1",
"@types/glob-parent": "^5.1.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"chalk": "^4.1.2",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.1",
"glob-parent": "^6.0.2",
"jest": "^29.4.0",
"lerna": "^6.4.1",
"prettier": "^2.0.5",
"rimraf": "^4.4.0",
"rollup": "^3.20.0",
"rollup-plugin-terser": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.7.2",
"yargs": "^17.6.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}