This repository was archived by the owner on Oct 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.2 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
{
"name": "react-social-github",
"version": "2.1.2",
"description": "Showcase your GitHub profile, organization or repository information",
"main": "build/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "npm run build:css && babel lib -d build",
"build:css": "node-sass-chokidar --include-path ./lib --include-path ./node_modules lib/ -o build/",
"build:watch": "npm-run-all -p build:watch-css build:watch-js lint:watch",
"build:watch-js": "babel lib -w -d build",
"build:watch-css": "npm run build:css && node-sass-chokidar --include-path ./lib --include-path ./node_modules lib/ -o build/ --watch --recursive",
"lint": "eslint lib/**; exit 0",
"lint:watch": "esw -w lib/**",
"prepare": "npm run build",
"test": "mocha --compilers js:babel-core/register ./test/**/*.spec.js",
"test:watch": "npm test -- --watch"
},
"author": "Vandre Leal <vandre.leal.candido@gmail.com> (http://vandreleal.github.io)",
"contributors": [
"Gustavo Sampaio <gbritosampaio@gmail.com> (http://gsampaio.info)",
"Emerson Jair <emersonjairr@gmail.com> (http://emersonjair.info/)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vandreleal/react-social-github.git"
},
"homepage": "https://github.com/vandreleal/react-social-github#readme",
"bugs": {
"url": "https://github.com/vandreleal/react-social-github/issues"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^4.5.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"eslint-watch": "^5.1.2",
"expect": "^1.20.2",
"mocha": "^6.1.4",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4"
},
"dependencies": {
"emoji-js": "^3.2.2",
"react-addons-css-transition-group": "^15.6.0",
"react-octicons": "^0.2.0",
"whatwg-fetch": "^2.0.3"
}
}