-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "animakit-expander",
"version": "2.1.4",
"description": "AnimakitExpander - React component for the expanding and collapsing of the blocks",
"main": "index.js",
"files": [
"*.md",
"lib/*.js"
],
"scripts": {
"clean": "rimraf lib/*.js",
"build": "npm run clean && babel -s inline -d ./ **/*.es6",
"prepublishOnly": "npm run build",
"test": "npm run build && jest"
},
"author": "Anna Selezniova",
"license": "MIT",
"keywords": [
"animakit",
"animation",
"expander",
"expand",
"collapse",
"react",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/animakit/animakit-expander"
},
"homepage": "https://animakit.github.io",
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-3": "^6.22.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"jest": "^23.6.0",
"jsdom": "^12.2.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"rimraf": "^2.6.2"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"jest": {
"testEnvironment": "node",
"testURL": "http://localhost",
"setupFiles": [
"<rootDir>/test/setup.js"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}