forked from pitr12/base-styling-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.31 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "base-styling-components",
"description": "Base react styling components",
"author": "Peter Dubec",
"user": "pitr12",
"version": "2.0.2",
"scripts": {
"start": "webpack-dev-server",
"test": "jest",
"test:update": "jest --updateSnapshot",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache",
"dist": "webpack",
"dist:min": "webpack",
"dist:modules": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"preversion": "npm run test:coverage",
"prepublish": "npm run dist:modules && npm run flow-prepublish",
"flow-prepublish": "flow-copy-source src dist-modules",
"postinstall": "node lib/post_install.js",
"flow": "flow"
},
"main": "dist-modules",
"module": "src",
"jsnext:main": "src",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.26.1",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"fela": "^4.2.0",
"fela-dom": "^4.2.0",
"file-loader": "^0.9.0",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.1.0",
"git-prepush-hook": "^1.0.1",
"html-webpack-plugin": "^2.25.0",
"html-webpack-template": "^6.0.0",
"inline-style-prefixer": "^2.0.1",
"jest": "^18.1.0",
"json-loader": "^0.5.4",
"purecss": "^0.6.1",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-fela": "^4.2.0",
"react-github-corner": "^0.3.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^2.0.0"
},
"peerDependencies": {
"fela": "^4.2.0",
"fela-dom": "^4.2.0",
"inline-style-prefixer": "^2.0.1",
"react": ">= 0.11.2",
"react-fela": "^4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pitr12/base-styling-components.git"
},
"jest": {
"testRegex": "(__tests__\\/.*)(test|spec)\\.jsx?$",
"testEnvironment": "jsdom",
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"setupFiles": [
"./__tests__/config/enzymeSetup.js"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"keywords": [
"react",
"reactjs",
"boilerplate"
],
"license": "MIT",
"pre-push": [
"test"
],
"dependencies": {
"chai-enzyme": "1.0.0-beta.0",
"enzyme": "^3.0.0",
"prop-types": "^15.5.10",
"react-test-renderer": "^16.2.0"
}
}