-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.46 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
76
77
78
79
80
{
"name": "react-collapsable",
"version": "1.0.4",
"description": "A Collapsable React Component",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib --ignore **/spec.js,**/stories.js,**/spec.ts,**/stories.ts",
"test": "jest --watchAll",
"test-coverage": "jest --coverage --watchAll",
"test-ci": "CI=true jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "yarn run test-ci && yarn run build"
},
"author": "@dahliacreative",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dahliacreative/react-collapsable.git"
},
"keywords": [
"react",
"collapsable",
"animated",
"responsive",
"javascript",
"es6",
"hooks"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@emotion/babel-preset-css-prop": "^10.0.9",
"@emotion/core": "^10.0.10",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-storysource": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.13",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.8.0",
"react": "^16.8.6",
"enzyme-to-json": "^3.3.5",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@emotion/core": "^10.0.10",
"react": "^16.8.6"
},
"jest": {
"collectCoverageFrom": [
"!src/**/stories.{js,ts}",
"src/**/*.{js,ts,jsx,ts}"
],
"moduleDirectories": [
"src",
"node_modules"
],
"resetMocks": true,
"setupFiles": [
"./tests.config.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}