-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "components",
"description": "Re-envisioning semantic UI as react components",
"version": "0.0.1",
"homepage": "http://github.com/wearefractal/components",
"repository": "git://github.com/wearefractal/components.git",
"author": "Fractal [email protected] (http://wearefractal.com)",
"dependencies": {
"Base64": "^0.3.0",
"classnames": "^2.1.1",
"insert-css": "^0.2.0",
"jeet": "^6.1.2",
"lodash.merge": "^3.0.1",
"nib": "^1.1.0",
"stylify": "contra/stylify#resolve-uses"
},
"peerDependencies": {
"react": "^0.12.2",
"react-router": "^0.12.0"
},
"devDependencies": {
"istanbul-coveralls": "^1.0.1",
"jshint": "^2.5.11",
"jshint-stylish": "^1.0.0",
"mochify": "dylanfm/mochify.js",
"mochify-istanbul": "^2.1.1",
"should": "^6.0.0"
},
"scripts": {
"dev": "mochify --recursive --reporter spec --watch",
"lint": "jshint . --exclude node_modules --config .jshintrc --reporter node_modules/jshint-stylish/stylish.js",
"test": "npm run-script lint && mochify --recursive --reporter spec",
"coveralls": "mochify --recursive --plugin [ mochify-istanbul --exclude '**/+(test|node_modules)/**/*' --report lcov --dir ./coverage ] && istanbul-coveralls"
},
"browserify": {
"transform": [
"stylify"
]
},
"stylify": {
"use": [
"nib",
"jeet"
]
},
"engines": {
"node": ">= 0.10"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/wearefractal/components/raw/master/LICENSE"
}
]
}