This repository was archived by the owner on Mar 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.56 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"author": "everydayhero <edh-dev@everydayhero.com>",
"name": "edh-widgets",
"version": "5.0.0",
"description": "Widgets are small Javascript components that integrate with everydayhero's API. These include search components and components for showing leaderboard and fundraising totals for campaigns, charities, and networks. Unlike iframe snippets, using widgets allows you to customise the base-level styling to suit your needs.",
"license": "MIT",
"main": "src/widgets.js",
"dependencies": {
"async": "^1.5.2",
"axios": "^0.15.3",
"classnames": "^2.2.4",
"es5-shim": "~4.5.5",
"highlight.js": "^9.2.0",
"jsonp": "webmodules/jsonp",
"lodash": "^4.5.1",
"moment": "^2.10.2",
"numbro": "^1.7.1",
"paths-js": "^0.4.3",
"hero-ui": "^5.8.10",
"react-addons-css-transition-group": "^15.5.2",
"react-addons-pure-render-mixin": "^15.5.2",
"react-tween-state": "0.1.5",
"remarkable": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/register": "^7.10.1",
"babel-jest": "^26.0.1",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"chai": "^3.5.0",
"compression": "~1.6.1",
"core-js": "^3.6.5",
"enzyme": "^2.4.1",
"express": "~4.14.0",
"gulp": "~3.9.1",
"gulp-autoprefixer": "~3.1.0",
"gulp-awspublish": "~3.2.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.3.2",
"gulp-concat": "~2.6.0",
"gulp-cssnano": "^2.1.1",
"gulp-inject": "~4.1.0",
"gulp-react": "~3.1.0",
"gulp-rename": "~1.2.0",
"gulp-replace": "^0.5.3",
"gulp-sass": "^2.3.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "~2.0.0",
"gulp-util": "~3.0.1",
"jest-cli": "^26.0.1",
"jsdom": "^16.2.2",
"jshint-stylish": "~2.2.0",
"mocha": "^3.0.1",
"morgan": "~1.7.0",
"react-addons-test-utils": "^15.5.1",
"react-page-objects": "~0.5.1",
"react-test-renderer": "^15.5.4",
"simple-spinner": "~0.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"standard": "^8.4.0",
"superagent": "~1.8.2",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"watchify": "^3.4.0",
"wget": "~0.0.1"
},
"peerDependencies": {
"react": "^15.6.2",
"react-dom": "^15.6.2"
},
"repository": {
"type": "git",
"url": "git://github.com/everydayhero/react-widgets.git"
},
"scripts": {
"setup": "npm install && npm run build && npm test",
"build": "gulp",
"build-dev": "NODE_ENV=development gulp --debug",
"watch": "gulp watch --debug",
"lint": "standard",
"scripts": "gulp scripts",
"scripts-dev": "gulp scripts --debug",
"styles": "gulp styles",
"styles-dev": "gulp styles --debug",
"test": "jest && bin/specs",
"test-spec": "bin/specs",
"test-units": "jest",
"test-debug": "node --debug-brk --harmony ./node_modules/.bin/jest --runInBand",
"start": "node server.js",
"predev": "npm run lint",
"dev": "npm run build-dev && npm run start & npm run watch",
"deploy-assets": "bin/deploy_assets",
"version": "bin/write-version-sass-var && git add src/scss/_version.scss"
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/enzyme/"
]
},
"standard": {
"env": [
"mocha"
],
"globals": [
"expect",
"chai",
"jest",
"jasmine",
"sinon"
]
}
}