forked from osstotalsoft/jsbb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.41 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
{
"name": "@totalsoft/react-state-lens",
"version": "5.0.35",
"description": "React extensions for the \"change-tracking\" library",
"main": "index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "yarn build:cjs && yarn build:esm && yarn build:copy-files",
"build:cjs": "cross-env BABEL_ENV=cjs babel src/ --out-dir build/ --ignore \"**/__tests__\" --ignore \"**/__mocks__\"",
"build:esm": "cross-env BABEL_ENV=esm babel src/ --out-dir build/esm --ignore \"**/__tests__\" --ignore \"**/__mocks__\"",
"build:copy-files": "node ../../scripts/copy-files.js",
"prepare": "yarn run build",
"test": "jest --watchAll",
"tslint": "tslint -p tsconfig.json \"{src,test}/**/*.{ts,tsx}\""
},
"author": "TotalSoft",
"homepage": "https://github.com/osstotalsoft/jsbb/tree/master/packages/react-state-lens",
"repository": {
"type": "git",
"url": "https://github.com/osstotalsoft/jsbb.git",
"directory": "packages/react-state-lens"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^2.0.1",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0"
},
"dependencies": {
"@totalsoft/change-tracking-react": "^5.0.35",
"@totalsoft/zion": "^5.0.22"
},
"peerDependencies": {
"react": ">= 16.9.0"
}
}