-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 892 Bytes
/
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
{
"name": "storable-state",
"version": "2.0.1",
"description": "State management library that integrates with localStorage",
"main": "index.js",
"scripts": {
"test": "concurrently \"tsc-watch\" \"webpack --config browserTest.config.js\""
},
"keywords": [
"store",
"storable",
"pubsub",
"writable",
"readable",
"state",
"state-management"
],
"author": "Mats Sommervold <[email protected]> (https://matssom.com)",
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3",
"serialize-javascript": "^5.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"mocha": "^8.2.1",
"ts-loader": "^8.0.11",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.2",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"files": [
"dist",
"index.js"
]
}