This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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": "colors-show",
"version": "v0.0.2",
"description": "Present your application colors with style.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src __test__",
"compile": "babel -d lib src",
"compile:watch": "babel -w -d lib src",
"clean": "rm -rf lib",
"prepublish": "npm run clean && npm test && npm run compile"
},
"files": [
"*.md",
"__test__",
"LICENSE",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RafalFilipek/colors-show.git"
},
"bugs": {
"url": "https://github.com/RafalFilipek/colors-show/issues"
},
"author": "Rafał Filipek <[email protected]>",
"license": "MIT",
"keywords": [
"colors",
"showcase",
"storybook",
"react"
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "./.coverage",
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
]
},
"devDependencies": {
"babel-cli": "6.23.0",
"babel-eslint": "7.1.1",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-latest": "6.22.0",
"babel-preset-react": "6.23.0",
"enzyme": "2.7.1",
"eslint": "3.16.1",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-flowtype-errors": "3.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"flow-bin": "0.40.0",
"jest": "19.0.2",
"publish-please": "2.2.0",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"release": "1.1.7"
},
"dependencies": {
"react": "^15.4.2",
"styled-components": "^1.4.4"
}
}