forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.77 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
{
"name": "rebass",
"version": "0.3.4",
"description": "Configurable React Stateless Functional UI Components",
"author": "Brent Jackson",
"license": "MIT",
"scripts": {
"prepublish": "mkdir -p dist && babel src --out-dir dist",
"static": "static-react docs/components/Root.js --props docs/data.js > build/index.html",
"build": "mkdir -p build && mkdir -p build/demo && npm run static && npm run demo && npm run copy",
"copy": "cp demo/bundle.js build/demo && cp demo/index.html build/demo",
"demo": "webpack -p --progress --colors --config demo/webpack.config.js",
"demo:dev": "webpack-dev-server --progress --colors --config demo/webpack.config.js",
"deploy": "./deploy.sh",
"_deploy": "gh-pages -d build",
"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.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"expect": "^1.14.0",
"gh-pages": "^0.12.0",
"gx": "^1.0.0-rc3",
"jsdom": "^9.10.0",
"json-loader": "^0.5.4",
"jsonp": "^0.2.1",
"mocha": "^3.2.0",
"mocha-jsdom": "^1.1.0",
"object-assign": "^4.1.0",
"onchange": "^3.2.1",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-component-permutations": "^1.0.0-beta2",
"react-docgen": "^2.13.0",
"react-dom": "^15.4.2",
"react-element-to-jsx-string": "^6.0.0",
"react-geomicons": "^2.0.5",
"react-router": "^3.0.2",
"reflexbox": "^2.1.0",
"standard": "^8.6.0",
"static-react": "^3.1.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {
"classnames": "^2.2.3",
"object-assign": "^4.1.1",
"react-addons-pure-render-mixin": "^15.4.2"
},
"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",
"standard": {
"parser": "babel-eslint",
"ignore": [
"docs/**/*",
"demo/**/*"
],
"globals": [
"before",
"after",
"beforeEach",
"afterEach",
"context",
"describe",
"it"
]
},
"eslintConfig": {
"parser": "babel-eslint"
}
}