-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "multi-select-tabs",
"description": "A WebExtension that introduces a sidebar that allows you to select one or more tabs in your browser window and perform various operations on them.",
"version": "0.5.0",
"main": "index.js",
"repository": "https://github.com/mikeconley/multi-select-tabs",
"author": "Mike Conley (mike.d.conley@gmail.com)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"file-loader": "^0.11.1",
"jest": "^20.0.3",
"jsdom": "^10.1.0",
"react-test-renderer": "^15.5.4",
"sinon-chrome": "^2.2.1",
"webpack": "^2.5.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"jest": {
"moduleDirectories": [
"./node_modules/",
"./src/js/"
]
}
}