aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: b12307ab3253a5fa1e07a2ca04aac33ab8f7fcaa (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
  "name": "vim-vixen",
  "description": "Vim vixen",
  "scripts": {
    "schema": "ajv compile -s src/shared/settings/schema.json -o src/shared/settings/validate.js",
    "start": "webpack --mode development -w --debug --devtool inline-source-map",
    "build": "NODE_ENV=production webpack --mode production --progress --display-error-details --devtool inline-source-map",
    "package": "npm run build && script/package",
    "lint": "eslint --ext .ts,.tsx .",
    "lint:fix": "eslint --ext .ts,.tsx . --fix",
    "type-checks": "tsc --noEmit",
    "test": "karma start",
    "test:e2e": "mocha --timeout 10000 --retries 10 --require ts-node/register --extension ts e2e"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ueokande/vim-vixen.git"
  },
  "author": "Shin'ya Ueoka",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ueokande/vim-vixen/issues"
  },
  "homepage": "https://github.com/ueokande/vim-vixen",
  "devDependencies": {
    "@types/assert": "^1.4.3",
    "@types/chai": "^4.2.7",
    "@types/express": "^4.17.2",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.12.21",
    "@types/prop-types": "^15.7.3",
    "@types/react": "^16.9.17",
    "@types/react-dom": "^16.9.4",
    "@types/react-redux": "^7.1.5",
    "@types/react-test-renderer": "^16.9.1",
    "@types/redux-promise": "^0.5.28",
    "@types/selenium-webdriver": "^4.0.6",
    "@types/sinon": "^7.5.1",
    "@typescript-eslint/eslint-plugin": "^2.12.0",
    "@typescript-eslint/parser": "^2.12.0",
    "ajv": "^6.10.2",
    "ajv-cli": "^3.0.0",
    "chai": "^4.2.0",
    "css-loader": "^3.4.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.7.0",
    "eslint-plugin-prettier": "^3.1.2",
    "eslint-plugin-react": "^7.17.0",
    "eslint-plugin-standard": "^4.0.1",
    "express": "^4.17.1",
    "html-webpack-plugin": "^3.2.0",
    "jsonwebtoken": "^8.5.1",
    "jszip": "^3.2.2",
    "karma": "^4.4.1",
    "karma-firefox-launcher": "^1.2.0",
    "karma-html2js-preprocessor": "^1.1.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-sinon": "^1.0.5",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^4.0.2",
    "lanthan": "0.0.2",
    "mocha": "^6.2.2",
    "node-sass": "^4.13.0",
    "prettier": "^1.19.1",
    "prettier-eslint": "^9.0.1",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "react-redux": "^7.1.3",
    "react-test-renderer": "^16.12.0",
    "redux": "^4.0.4",
    "redux-promise": "^0.6.0",
    "reflect-metadata": "^0.1.13",
    "request-promise-native": "^1.0.8",
    "sass-loader": "^8.0.0",
    "sinon": "^7.5.0",
    "sinon-chrome": "^3.0.1",
    "style-loader": "^1.1.1",
    "ts-loader": "^6.2.1",
    "ts-node": "^8.5.4",
    "tsyringe": "^4.0.1",
    "typescript": "^3.7.4",
    "web-ext-types": "^3.2.1",
    "webextensions-api-fake": "^0.9.1",
    "webpack": "^4.41.4",
    "webpack-cli": "^3.3.10"
  }
}