You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

82 lines
2.6 KiB

7 years ago
{
"name": "vim-vixen",
"description": "Vim vixen",
"scripts": {
"schema": "ajv compile -s src/shared/settings/schema.json -o src/shared/settings/validate.js",
6 years ago
"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 src",
"type-checks": "tsc --noEmit",
"test": "karma start",
5 years ago
"test:e2e": "mocha --timeout 10000 --retries 10 --require ts-node/register --extension ts e2e"
7 years ago
},
"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",
5 years ago
"@types/chai": "^4.2.0",
"@types/express": "^4.17.1",
5 years ago
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
5 years ago
"@types/prop-types": "^15.7.1",
5 years ago
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.2",
"@types/redux-promise": "^0.5.28",
"@types/selenium-webdriver": "^4.0.2",
5 years ago
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
4 years ago
"ajv": "^6.10.2",
4 years ago
"ajv-cli": "^3.0.0",
"chai": "^4.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-plugin-react": "^7.14.3",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"jsonwebtoken": "^8.5.1",
5 years ago
"jszip": "^3.2.2",
"karma": "^4.2.0",
"karma-firefox-launcher": "^1.2.0",
"karma-html2js-preprocessor": "^1.1.0",
7 years ago
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
7 years ago
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lanthan": "0.0.2",
5 years ago
"mocha": "^6.2.0",
5 years ago
"node-sass": "^4.13.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-test-renderer": "^16.9.0",
"redux": "^4.0.4",
"redux-promise": "^0.6.0",
"reflect-metadata": "^0.1.13",
"request-promise-native": "^1.0.7",
"sass-loader": "^7.3.1",
5 years ago
"sinon": "^7.4.1",
"sinon-chrome": "^3.0.1",
"style-loader": "^1.0.0",
5 years ago
"ts-loader": "^6.0.4",
"ts-node": "^8.4.1",
"tsyringe": "^4.0.0",
"typescript": "^3.6.2",
5 years ago
"web-ext-types": "^3.2.1",
"webextensions-api-fake": "^0.9.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
7 years ago
}