-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
75 lines (75 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-slidedown",
"version": "2.4.7",
"description": "Component for animating height during mount/unmount using a CSS transition",
"main": "lib/slidedown.js",
"style": "lib/slidedown.css",
"types": "lib/slidedown.d.ts",
"scripts": {
"clean": "rimraf '{example,lib,test}/**/*.{js,js.map,d.ts}'",
"test": "npm run build && karma start --single-run",
"test:watch": "karma start",
"test:start": "concurrently \"npm run build:watch\" \"npm run test:watch\" --kill-others",
"build": "tsc",
"build:watch": "tsc -w",
"example:watch": "watchify ./example/index.js -o ./example/bundle.js",
"example:serve": "live-server --open=./example --port=5555",
"start": "concurrently \"npm run build:watch\" \"npm run example:watch\" \"npm run example:serve\" --kill-others"
},
"author": "Frank Wallis",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/enzyme": "^3.1.10",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/react": "^16.0.16",
"@types/react-dom": "^16.0.5",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"concurrently": "^4.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.3.1",
"karma": "^3.0.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^5.2.0",
"purecss": "^1.0.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.2",
"typescript": "^4.5.4",
"watchify": "^3.11.0"
},
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"react": "^16.3.0 || 17",
"react-dom": "^16.3.0 || 17"
},
"files": [
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.css",
"lib/**/*.d.ts",
"lib/**/*.tsx"
],
"repository": "frankwallis/react-slidedown",
"keywords": [
"react",
"animation",
"collapse",
"dropdown",
"transition",
"mount",
"height",
"auto",
"dynamic",
"css",
"slide"
]
}