-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
64
{
"name": "react-toggleable-context",
"version": "1.0.2",
"description": "React components to make anything expandable",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "jest --env=jsdom",
"lint": "tslint -c tslint.json --project tsconfig.json",
"prepare": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jb-san/react-toggleable-context.git"
},
"keywords": [
"react",
"expand",
"expandable",
"accordion",
"accordions",
"context",
"folding",
"collapse",
"collapsable",
"toggle",
"toggleable",
"typescript"
],
"author": "Jonathan Borg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jb-san/react-toggleable-context/issues"
},
"homepage": "https://github.com/jb-san/react-toggleable-context#readme",
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/jsdom": "^12.2.3",
"@types/node": "^11.13.7",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"jsdom": "^14.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"tslint": "^5.15.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.3"
},
"peerDependencies": {
"react": "^16.8.6"
},
"dependencies": {
"enzyme-to-json": "^3.3.5"
}
}