-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "react-cached-callback",
"version": "2.0.4",
"description": "Library for excluding function generations on React's render function call",
"main": "dist/index.js",
"module": "dist-es/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "ts-node -r ./config/require ./node_modules/tape/bin/tape",
"tests": "npm run test ./src/**/*.spec.*",
"test-w": "nodemon -e ts,tsx --exec npm run test",
"test-i": "npm run test-i-prepare && npm run test-i-run",
"test-i-run": "ts-node -P ./test/tsconfig.json -r ./config/require ./node_modules/tape/bin/tape ./test/index.spec.tsx",
"test-i-prepare": "npm run build && sh ./test/pack",
"build": "npm run build-cjs && npm run build-es",
"build-cjs": "tsc -p tsconfig.base.json",
"build-es": "tsc -p tsconfig.es.json",
"prepublishOnly": "npm run tests && npm run test-i",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"commit": "git-cz"
},
"keywords": [
"react",
"bind",
"reselect",
"cache",
"arrow-function"
],
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/node": "^18.7.18",
"@types/tape": "^4.2.30",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.17",
"cz-conventional-changelog": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.11.2",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"nodemon": "^2.0.20",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"tape": "^4.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/megazazik/react-cached-callback.git"
},
"homepage": "https://github.com/megazazik/react-cached-callback",
"author": "Michael Lebedev",
"email": "[email protected]",
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}