This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "flexbox-react",
"version": "4.4.0",
"description": "Unopinionated, standard compliant flexbox component. No propietary APIs. Nothing but flexbox.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"test": "jest",
"check": "yarn run lint -s && yarn run test && dependency-check package.json --entry src",
"prebuild": "yarn run check -s && yarn run clean -s",
"build": "babel --optional runtime src -d dist --copy-files --ignore src/__tests__",
"prepublish": "yarn run build",
"postpublish": "git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nachoaIvarez/flexbox-react.git"
},
"keywords": [
"react",
"flexbox",
"layout"
],
"author": " <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nachoaIvarez/flexbox-react/issues"
},
"homepage": "https://github.com/nachoaIvarez/flexbox-react#readme",
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@types/react": "^15.0.21",
"@types/react-dom": "^0.14.23",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"dependency-check": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"typescript": "^2.2.2",
"watch": "^1.0.2"
},
"dependencies": {
"styled-components": "^2.0.0"
},
"jest": {
"testEnvironment": "jsdom"
}
}