-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 984 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
40
41
{
"name": "kltk-observable",
"version": "0.4.0",
"description": "a simple observable data",
"repository": {
"type": "git",
"url": "https://github.com/kltk/observable"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"release": "npx standard-version",
"release:patch": "npx standard-version --release-as patch",
"release:minor": "npx standard-version --release-as minor",
"release:major": "npx standard-version --release-as major",
"prepublishOnly": "npm run build",
"prebuild": "rm -rf dist *.tgz",
"build": "tsc",
"test": "jest --watchAll"
},
"keywords": [
"observable",
"immutable",
"data"
],
"author": "z <haig8@msn.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {
"immer": "^9.0.2"
}
}