-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 KB
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
{
"name": "animate-css-styled-components",
"version": "1.0.2",
"description": "port of animate.css for styled-components",
"main": "./lib/index.js",
"scripts": {
"build": "babel src -d ./lib",
"build-watch": "babel src -d ./lib -w",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublish": "babel src -d ./lib",
"test-dev": "jest --watch --coverage",
"test": "jest -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dielduarte/animate-css-styled-components.git"
},
"author": "Diel Duarte",
"license": "MIT",
"bugs": {
"url": "https://github.com/dielduarte/animate-css-styled-components/issues"
},
"homepage": "https://github.com/dielduarte/animate-css-styled-components#readme",
"peerDependencies": {
"styled-components": "^3.3.2"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"styled-components": "^3.3.2",
"jest": "^23.1.0",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.4.0",
"@storybook/react": "^3.4.7",
"@storybook/addon-actions": "^3.4.7",
"@storybook/addon-links": "^3.4.7",
"@storybook/addons": "^3.4.7",
"babel-runtime": "^6.26.0"
},
"files": [
"lib/"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js",
"!src/lcov-report/**",
"!**/node_modules/**",
"!**/stories/**",
"!**/Example/**",
"!**/docs/**",
"!**/.storybook/**",
"!**/lib/**"
]
},
"dependencies": {}
}