forked from jxnblk/_gx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
{
"name": "@tgrx/gx",
"version": "1.0.0-rc4",
"xdescription": "Minimal responsive React grid system based on the Fab Four Technique",
"description": "Minimal responsive React grid system based on the <a href='https://medium.freecodecamp.com/the-fab-four-technique-to-create-responsive-emails-without-media-queries-baf11fdfa848#.hnwla2u14'>Fab Four Technique</a>.",
"main": "dist/Gx.js",
"scripts": {
"prepare": "mkdir -p dist && babel src --out-dir dist",
"start": "static-react docs/Root.js -p docs/data.js > index.html",
"watch:docs": "onchange docs/**/* -- npm run start",
"karma": "karma start test/karma.config.js",
"mocha": "mocha test --compilers js:babel-register",
"test": "npm run mocha && npm run karma"
},
"author": "Brent Jackson",
"contributors": [
"Marco Cedaro",
"Florian Mettetal"
],
"license": "MIT",
"keywords": [
"react",
"react-component",
"grid",
"layout"
],
"bugs": {
"url": "https://github.com/tgrstack/gx/issues"
},
"homepage": "https://github.com/tgrstack/gx#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-loader": "^7.0.0",
"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",
"karma": "^1.7.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"onchange": "^3.2.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-component-permutations": "^1.0.0-beta1",
"react-docgen": "^2.7.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"static-react": "^3.1.0",
"webpack": "^1.12.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgrstack/gx.git"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
}
}