-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.82 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
{
"name": "chrome-remote-css",
"version": "1.0.0",
"description": "browser extension to expose debugging capabilities over localhost",
"main": "background.js",
"repository": "https://github.com/sarahlim/chrome-remote-css.git",
"author": "Sarah Lim <[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.22.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"browser-env": "^3.2.0",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"devtools-typed": "https://github.com/sarahlim/devtools-typed",
"eslint": "^4.8.0",
"eslint-plugin-flowtype": "^2.37.0",
"flow-bin": "^0.47.0",
"html-webpack-plugin": "^2.29.0",
"webpack": "^3.0.0"
},
"ava": {
"require": [
"babel-register",
"./test/helpers/setup.js"
],
"babel": "inherit"
},
"babel": {
"presets": [
"env",
"flow"
],
"plugins": [
"transform-runtime",
"transform-class-properties",
[
"babel-plugin-transform-builtin-extend",
{
"globals": [
"Error",
"Array"
]
}
]
]
},
"scripts": {
"build": "webpack --env",
"build:watch": "webpack --env.dev",
"lint": "eslint .",
"test": "ava"
},
"dependencies": {
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-runtime": "^6.26.0",
"chrome-promise": "^2.0.3",
"cssbeautify": "^0.3.1",
"lodash": "^4.17.5",
"normalizr": "^3.2.4",
"pixelmatch": "https://github.com/sarahlim/pixelmatch.git#be54caf11a5",
"socket.io-client": "^2.0.2",
"webpack-chrome-extension-reloader": "^0.4.0"
}
}