-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
63 lines (63 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
54
55
56
57
58
59
60
61
62
63
{
"name": "redux-webext",
"version": "1.1.2",
"description": "Redux for WebExtensions",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run clean && npm run check-code && npm run build",
"clean": "rimraf lib",
"check-code": "npm run lint && npm run flow && npm test",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && codecov",
"lint": "eslint src tests",
"flow": "flow check",
"build": "babel src -d lib",
"build:watch": "npm run build -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivantsov/redux-webext.git"
},
"keywords": [
"redux",
"store",
"state",
"webextension",
"extension",
"webext",
"chrome",
"firefox",
"react"
],
"author": "Alexander Ivantsov <alexivantsov@ya.ru> (https://github.com/ivantsov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivantsov/redux-webext/issues"
},
"homepage": "https://github.com/ivantsov/redux-webext#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"codecov": "^1.0.1",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.37.4",
"jest": "^18.1.0",
"rimraf": "^2.5.4"
},
"jest": {
"testRegex": "tests/.*.js$",
"resetMocks": true,
"resetModules": true
}
}