-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
{
"name": "react-climb-social",
"version": "2.0.0-alpha.1",
"private": false,
"description": "React components for interactions with Climb.social",
"main": "lib/index.js",
"scripts": {
"start": "./scripts/startSiteDevServer.sh",
"commit": "git cz",
"build": "./scripts/build.sh && ./scripts/buildExample.sh",
"coverage": "./scripts/coverage.sh",
"test": "./scripts/test.sh",
"lint": "eslint .",
"prepublish": "npm run lint && npm run build",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Climb-social/react-climb-social.git"
},
"keywords": [
"react",
"reactjs",
"javascript",
"react-component",
"Social Media"
],
"author": "Michele Memoli <[email protected]> (http://climb.social)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Climb-social/react-climb-social/issues"
},
"homepage": "https://github.com/Climb-social/react-climb-social",
"dependencies": {
"bricks.js": "^1.0.0",
"climb-social": "^1.2.1",
"knot.js": "^1.0.1",
"moment": "^2.11.2",
"react": "^0.14.0"
},
"peerDependencies": {
"react": "^0.14.0",
"bricks.js": "^1.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.0.0",
"babel-tape-runner": "^1.3.1",
"commitizen": "^2.5.0",
"coveralls": "^2.11.6",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"enzyme": "^2.0.0",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.3.8",
"gh-pages": "^0.11.0",
"ghooks": "^1.0.3",
"istanbul": "^0.4.2",
"less": "^2.6.0",
"less-loader": "^2.2.2",
"postcss-loader": "^0.8.1",
"precss": "^1.4.0",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.2.3",
"style-loader": "^0.13.0",
"tape": "^4.4.0",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run lint"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}