Completely updated React, fixed #11, (hopefully)
This commit is contained in:
77
goTorrentWebUI/node_modules/attr-accept/package.json
generated
vendored
77
goTorrentWebUI/node_modules/attr-accept/package.json
generated
vendored
@@ -1,31 +1,31 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"attr-accept@1.1.0",
|
||||
"attr-accept@1.1.2",
|
||||
"C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI"
|
||||
]
|
||||
],
|
||||
"_from": "attr-accept@1.1.0",
|
||||
"_id": "attr-accept@1.1.0",
|
||||
"_from": "attr-accept@1.1.2",
|
||||
"_id": "attr-accept@1.1.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-tc01In8WOTWo8d4Q7T66FpQfa+Y=",
|
||||
"_integrity": "sha512-NUj0itVSnpFkUYCj3XKSRCZ7N9gPwWcyX/tF7HosqyDBPMSygALivvJIGI8VvlPcunns5khMkpxoNshvmhy/ZQ==",
|
||||
"_location": "/attr-accept",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "attr-accept@1.1.0",
|
||||
"raw": "attr-accept@1.1.2",
|
||||
"name": "attr-accept",
|
||||
"escapedName": "attr-accept",
|
||||
"rawSpec": "1.1.0",
|
||||
"rawSpec": "1.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.1.0"
|
||||
"fetchSpec": "1.1.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-1.1.0.tgz",
|
||||
"_spec": "1.1.0",
|
||||
"_resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-1.1.2.tgz",
|
||||
"_spec": "1.1.2",
|
||||
"_where": "C:\\Users\\deranjer\\go\\src\\github.com\\deranjer\\goTorrent\\goTorrentWebUI",
|
||||
"author": {
|
||||
"name": "Andrey Okonetchnikov @okonetchnikov"
|
||||
@@ -38,24 +38,36 @@
|
||||
"path": "./node_modules/cz-conventional-changelog"
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"core-js": "^2.5.0"
|
||||
},
|
||||
"description": "JavaScript implementation of the \"accept\" attribute for HTML5 <input type=\"file\">",
|
||||
"devDependencies": {
|
||||
"babel": "^5.8.23",
|
||||
"babel-core": "5.8.25",
|
||||
"babel-eslint": "^4.1.1",
|
||||
"babel-loader": "5.3.2",
|
||||
"core-js": "1.2.2",
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-eslint": "^8.0.0",
|
||||
"babel-loader": "^7.1.2",
|
||||
"babel-preset-env": "^1.6.0",
|
||||
"cz-conventional-changelog": "^1.2.0",
|
||||
"eslint": "^1.3.1",
|
||||
"eslint-config-airbnb": "0.0.8",
|
||||
"eslint-plugin-react": "^3.3.1",
|
||||
"expect": "^1.9.0",
|
||||
"mocha": "^2.3.2",
|
||||
"semantic-release": "^4.3.5",
|
||||
"webpack": "1.12.2"
|
||||
"eslint": "^4.6.1",
|
||||
"eslint-config-airbnb": "^15.1.0",
|
||||
"eslint-config-okonet": "^6.1.3",
|
||||
"eslint-config-prettier": "^2.4.0",
|
||||
"eslint-plugin-flowtype": "^2.35.1",
|
||||
"eslint-plugin-import": "^2.7.0",
|
||||
"eslint-plugin-jsx-a11y": "^5.1.1",
|
||||
"eslint-plugin-node": "^5.1.1",
|
||||
"eslint-plugin-prettier": "^2.2.0",
|
||||
"eslint-plugin-react": "^7.3.0",
|
||||
"expect": "^1.20.2",
|
||||
"husky": "^0.14.3",
|
||||
"lint-staged": "^4.1.3",
|
||||
"mocha": "^3.5.0",
|
||||
"prettier": "^1.6.1",
|
||||
"travis-deploy-once": "^4.3.4",
|
||||
"webpack": "^3.5.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.10"
|
||||
"node": ">=4"
|
||||
},
|
||||
"homepage": "https://github.com/okonet/attr-accept#readme",
|
||||
"keywords": [
|
||||
@@ -68,6 +80,12 @@
|
||||
"file"
|
||||
],
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"*.js": [
|
||||
"eslint --fix",
|
||||
"git add"
|
||||
]
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"name": "attr-accept",
|
||||
"repository": {
|
||||
@@ -76,12 +94,13 @@
|
||||
},
|
||||
"scripts": {
|
||||
"build": "webpack -p",
|
||||
"check": "npm run lint && npm test",
|
||||
"lint": "eslint ./src",
|
||||
"prepublish": "npm run check && npm run build",
|
||||
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
||||
"test": "mocha --compilers js:babel/register --recursive",
|
||||
"test:watch": "npm test -- --watch"
|
||||
"lint": "eslint src/ test/",
|
||||
"precommit": "lint-staged",
|
||||
"prepublish": "npm test && npm run build",
|
||||
"pretest": "npm run lint",
|
||||
"test": "mocha --compilers js:babel-core/register --recursive",
|
||||
"test:watch": "npm test -- --watch",
|
||||
"travis-deploy-once": "travis-deploy-once"
|
||||
},
|
||||
"version": "1.1.0"
|
||||
"version": "1.1.2"
|
||||
}
|
||||
|
Reference in New Issue
Block a user