This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "happo",
"version": "4.0.0-beta.1",
"description": "Command-line tool to visually diff JavaScript components",
"bin": {
"happo": "./bin/happo"
},
"scripts": {
"build": "npm run --silent clean && babel src/server/ -d lib/server/ --ignore __tests__ && npm run --silent webpack",
"clean": "rimraf lib public/*.worker.js public/*.bundle.js*",
"jest": "jest",
"jest:watch": "jest --watch",
"lint": "eslint --ext .js,.jsx .",
"prepublish": "npm run --silent lint && npm run --silent build",
"pretest": "npm run --silent lint",
"test": "npm run --silent jest",
"webpack": "webpack --optimize-minimize",
"webpack-dev": "webpack --devtool eval-source-map --progress --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Galooshi/happo.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Galooshi/happo/issues"
},
"homepage": "https://github.com/Galooshi/happo#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.14.0",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-airbnb": "^2.1.1",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"jest": "^17.0.3",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-waypoint": "^4.1.0",
"rimraf": "^2.5.4",
"webpack": "^1.13.2"
},
"dependencies": {
"aws-sdk": "^2.7.5",
"commander": "^2.9.0",
"cssesc": "^1.0.0",
"ejs": "^2.5.2",
"express": "^4.14.0",
"mkdirp": "^0.5.1",
"pngjs": "^2.3.1",
"ps-node": "^0.1.4",
"selenium-webdriver": "^3.0.1",
"worker-loader": "^0.7.1"
},
"jest": {
"testRegex": "/__tests__/.*-test.(js|jsx)$"
}
}