-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "reui",
"version": "0.5.0",
"description": "A set of customizable React components",
"main": "index.jsx",
"scripts": {
"build": "babel -d lib/ src/",
"prepublish": "npm run build",
"dev": "webpack-dev-server",
"test": "NODE_PATH=$NODE_PATH:src mocha --compilers js:babel-register --require ./test/testHelper.js --recursive 'test/**/*.@(js|jsx)'",
"test:watch": "npm run test -- --watch",
"lint": "eslint *.js *.jsx src/",
"travis": "npm run lint && npm build && npm test"
},
"dependencies": {
"react-themeable": "^1.1.0"
},
"peerDependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"file-loader": "^0.9.0",
"jsdom": "^9.5.0",
"mocha": "^3.0.2",
"mocha-jsdom": "^1.1.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.10.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.22",
"webpack-dev-server": "^2.1.0-beta.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voidxnull/reui.git"
},
"bugs": {
"url": "https://github.com/voidxnull/reui/issues"
},
"homepage": "https://github.com/voidxnull/reui",
"keywords": [
"react",
"ui",
"components"
],
"author": "Dmitry Vdovin <voidxnull@gmail.com>",
"license": "MIT"
}