-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "zipkin-browser-extension",
"version": "0.0.4",
"description": "Lets you trigger Zipkin traces from the browser, while using your application",
"scripts": {
"lint": "eslint .",
"clean": "rimraf build/ dist/",
"dev": "npm run clean && webpack",
"dev:firefox": "npm run dev && web-ext run --source-dir ./build",
"test": "jest",
"build": "npm test && npm run dev"
},
"author": "OpenZipkin",
"license": "Apache-2.0",
"repository": "openzipkin/zipkin-browser-extension",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"chrome-dev-webpack-plugin": "^0.3.3",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"google-auth-library": "^0.9.7",
"jest": "^21.0.1",
"node-fetch": "^1.5.1",
"prettier": "^1.6.1",
"rimraf": "^2.6.1",
"web-ext": "^2.0.0",
"webextension-polyfill": "^0.1.1",
"webpack": "^3.5.5",
"zip-webpack-plugin": "^2.0.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"random-js": "^1.0.8",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}