-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "fuzztabs",
"private": true,
"version": "0.3.0",
"description": "Chrome extension to organize tabs in a vertical, searchable list.",
"main": "index.js",
"scripts": {
"lint": "standard --fix",
"build": "BABEL_ENV=production webpack -p",
"watch": "BABEL_ENV=development webpack --watch",
"test": "jest && codecov",
"test:watch": "jest --watch --notify"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"keywords": [],
"author": "Pascal Spiesz <[email protected]>",
"license": "MIT",
"dependencies": {
"fuse.js": "^3.0.5",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.71.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/herrfugbaum/FuzzTabs.git"
},
"bugs": {
"url": "https://github.com/herrfugbaum/FuzzTabs/issues"
},
"homepage": "https://github.com/herrfugbaum/FuzzTabs#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react-app": "^3.0.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"enzyme": "^2.9.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"img-loader": "^2.0.0",
"jest": "^20.0.4",
"react-test-renderer": "^15.6.1",
"regenerator-runtime": "^0.11.0",
"sinon": "^3.2.1",
"standard": "^10.0.3",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}