-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.38 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": "use-trace-update",
"version": "1.3.3",
"main": "use-trace-update.js",
"author": "Damian Green <damian@gcoders.com>",
"description": "React Hook to trace functional component updates.",
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"package.json",
"use-trace-update.d.ts",
"use-trace-update.js"
],
"homepage": "https://github.com/damiangreen/use-trace-update#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/damiangreen/use-trace-update.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "mocha -r chai/register-expect -r ts-node/register tests/**/*.spec.tsx"
},
"types": "./use-trace-update.d.ts",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/mocha": "^7.0.2",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.3",
"@types/react-test-renderer": "^16.0.3",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"lodash": "^4.17.13",
"mocha": "^10.3.0",
"mocha-sinon": "^2.1.2",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.5",
"react-test-renderer": "^16.8.0-alpha.1",
"sinon": "^9.0.2",
"ts-node": "^8.0.2",
"typescript": "^3.1.3"
}
}