-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.54 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
{
"name": "substate",
"version": "9.0.0",
"description": "Pub/Sub pattern with State Management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"test.watch": "jest --watch",
"pre": "npm test && npm run build && npm publish --tag next",
"safe-publish": "npm test && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomSaporito/substate.git"
},
"keywords": [
"state",
"flux",
"pubsub",
"immutability",
"modules",
"state management"
],
"author": "Tamb (Tom Saporito) <tsaporito@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@types/clone-deep": "^4.0.4",
"@types/jest": "^29.5.12",
"husky": "^4.2.5",
"jest": "^29.7.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.11.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"stacktrace-js": "^2.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"clone-deep": "^4.0.1",
"object-bystring": "^6.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}