forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.87 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
{
"name": "rebass",
"version": "0.2.6",
"description": "Configurable React Stateless Functional UI Components",
"author": "Brent Jackson",
"license": "MIT",
"scripts": {
"prepublish": "mkdir -p dist && babel src --out-dir dist",
"start": "static-react docs/components/Root.js --props docs/data.js > index.html",
"watch": "npm run start && onchange 'src/**/*' 'docs/**/*' -- npm run start",
"test:watch": "mocha test --watch --compilers js:babel-register",
"test": "standard && mocha test --compilers js:babel-register"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"expect": "^1.14.0",
"mocha": "^2.4.5",
"onchange": "^2.0.0",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-component-permutations": "^1.0.0-beta2",
"react-docgen": "^2.7.0",
"react-element-to-jsx-string": "^2.4.0",
"react-geomicons": "^2.0.4",
"reflexbox": "^1.1.0",
"standard": "^6.0.7",
"static-react": "^3.1.0"
},
"keywords": [
"components",
"react",
"react-component",
"ui",
"presentational",
"stateless",
"functional"
],
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jxnblk/rebass.git"
},
"bugs": {
"url": "https://github.com/jxnblk/rebass/issues"
},
"homepage": "https://github.com/jxnblk/rebass",
"dependencies": {
"classnames": "^2.2.3",
"object-assign": "^4.0.1"
},
"standard": {
"ignore": [
"docs/**/*",
"demo/**/*"
],
"globals": [
"beforeEach",
"context",
"describe",
"it"
]
},
"eslintConfig": {
"parser": "babel-eslint"
}
}