-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 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
{
"name": "@totalsoft/change-tracking-react",
"version": "5.0.37",
"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/change-tracking-react",
"repository": {
"type": "git",
"url": "https://github.com/osstotalsoft/jsbb.git",
"directory": "packages/change-tracking-react"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@testing-library/react-hooks": "^2.0.1",
"react-test-renderer": "^16.9.0"
},
"dependencies": {
"@totalsoft/change-tracking": "^5.0.37",
"@totalsoft/react-state-lens": "^5.0.37"
},
"peerDependencies": {
"react": ">= 16.9.0"
}
}