This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
forked from blueberryapps/react-bluekit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.12 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
{
"name": "react-bluekit",
"version": "0.2.2",
"description": "Visualisation and Playground generated from Components",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"check": "npm run lint && npm run test",
"clean": "rimraf lib",
"lint": "eslint src test examples",
"postversion": "git push && git push --tags && npm run clean",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run check",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueberryapps/react-bluekit.git"
},
"keywords": [
"es6",
"es7",
"mocha",
"module",
"node"
],
"author": "Ondrej Bartas",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueberryapps/react-bluekit/issues"
},
"homepage": "https://github.com/blueberryapps/react-bluekit#readme",
"devDependencies": {
"babel-cli": ">=5",
"babel-core": ">=5",
"babel-eslint": "^5.0.0",
"babel-loader": ">=5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": ">=5",
"babel-preset-react": ">=5",
"babel-preset-react-hmre": ">=1",
"babel-preset-stage-0": ">=5",
"babel-register": "^6.6.5",
"eslint": "^1.7.1",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"expect": "^1.12.2",
"gulp": "^3.9.1",
"mocha": "^2.3.3",
"react-hot-loader": "^1.3.0",
"react-svg-icon-generator": "0.2.2",
"rimraf": "^2.4.3"
},
"peerDependencies": {
"react": ">=0.13",
"react-dom": ">=0.13"
},
"dependencies": {
"color": ">=0.10",
"fuzzy": ">=0.1",
"gulp": ">=3",
"immutable": ">=3",
"nunjucks": ">=2",
"radium": ">=0.15",
"react-ace": ">=3",
"react-color": ">=2",
"react-copy-to-clipboard": ">=4",
"react-docgen": ">=2.4",
"react-highlight": ">=0.5",
"react-pure-render": ">=1",
"tosource": ">=1"
}
}