-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 805 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 805 Bytes
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
{
"name": "lacer",
"version": "0.0.1-rc4",
"description": "Simple and powerful state management for any application",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/Saghen/lacer.git",
"author": "Liam Dyer",
"license": "MIT",
"scripts": {
"clean": "lerna clean",
"updated": "lerna updated",
"bootstrap": "lerna bootstrap",
"publish": "lerna publish",
"build": "tsc",
"prepublish": "rimraf dist && tsc",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^9.4.6",
"jest": "^26.6.3",
"lerna": "^3.1.4",
"rimraf": "^2.6.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"immer": "^7.0.14"
}
}