-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@corets/value",
"description": "Observable value that can be used inside and outside of React",
"version": "0.2.2",
"author": "Maxim Kott",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"keywords": [
"corets",
"value",
"observable"
],
"files": [
"/dist"
],
"repository": "github:corets/value",
"homepage": "https://docs.corets.io/observables/value",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage && echo '\nOpen \"coverage/lcov-report/index.html\" in your browser\n'",
"lint": "tsc --noEmit",
"format": "prettier --write .",
"build": "tsc --noEmit && tsup src/index.ts --clean --dts --sourcemap --format esm,cjs --legacy-output",
"release": "np --no-release-draft",
"preview": "np --no-release-draft --tag dev",
"version": "yarn run build"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"np": "^7.2.0",
"prettier": "2.2.1",
"ts-jest": "^27.0.3",
"tsup": "^4.12.5",
"typescript": "^4.3.5"
}
}