Skip to content

Commit 2a3a269

Browse files
committed
fix: fix tslint errors (again)
1 parent c337734 commit 2a3a269

File tree

2 files changed

+184
-184
lines changed

2 files changed

+184
-184
lines changed

package.json

Lines changed: 138 additions & 138 deletions
Original file line numberDiff line numberDiff line change
@@ -1,141 +1,141 @@
11
{
2-
"name": "vue-transition-collection",
3-
"version": "0.0.0-development",
4-
"description": "",
5-
"keywords": [],
6-
"main": "dist/vue-transition-collection.umd.js",
7-
"module": "dist/vue-transition-collection.es5.js",
8-
"typings": "dist/types/vue-transition-collection.d.ts",
9-
"files": [
10-
"dist"
11-
],
12-
"author": "Lukas Troyer <36337818+lukas-tr@users.noreply.github.com>",
13-
"repository": {
14-
"type": "git",
15-
"url": "https://github.com/lukas-tr/vue-transition-collection.git"
16-
},
17-
"license": "MIT",
18-
"engines": {
19-
"node": ">=6.0.0"
20-
},
21-
"scripts": {
22-
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
23-
"prebuild": "rimraf dist",
24-
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
25-
"build-demo": "cd demo && npm run build",
26-
"start": "rollup -c rollup.config.ts -w",
27-
"test": "jest",
28-
"test:watch": "jest --watch",
29-
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
30-
"deploy-docs": "ts-node tools/gh-pages-publish",
31-
"report-coverage": "codecov",
32-
"commit": "git-cz",
33-
"semantic-release": "semantic-release",
34-
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
35-
"travis-deploy-once": "travis-deploy-once",
36-
"serve": "rimraf .rpt2_cache && concurrently \"npm run start\" \"cd demo && npm run serve\" "
37-
},
38-
"husky": {
39-
"hooks": {
40-
"pre-commit": "lint-staged",
41-
"pre-push": "npm run test:prod && npm run build",
42-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
43-
}
44-
},
45-
"lint-staged": {
46-
"{src,test}/**/*.ts": [
47-
"prettier --write",
48-
"git add"
49-
]
50-
},
51-
"config": {
52-
"commitizen": {
53-
"path": "node_modules/cz-conventional-changelog"
54-
}
55-
},
56-
"jest": {
57-
"transform": {
58-
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js",
59-
".(js)": "<rootDir>/node_modules/babel-jest"
60-
},
61-
"setupTestFrameworkScriptFile": "<rootDir>/tools/setupTests.js",
62-
"testEnvironment": "node",
63-
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
64-
"moduleFileExtensions": [
65-
"ts",
66-
"tsx",
67-
"js"
68-
],
69-
"coveragePathIgnorePatterns": [
70-
"/node_modules/",
71-
"/test/"
72-
],
73-
"coverageThreshold": {
74-
"global": {
75-
"branches": 60,
76-
"functions": 90,
77-
"lines": 90,
78-
"statements": 90
79-
}
80-
},
81-
"collectCoverage": true,
82-
"collectCoverageFrom": [
83-
"src/*.{js,ts}"
84-
]
85-
},
86-
"prettier": {
87-
"semi": false,
88-
"singleQuote": false
89-
},
90-
"commitlint": {
91-
"extends": [
92-
"@commitlint/config-conventional"
93-
]
2+
"name": "vue-transition-collection",
3+
"version": "0.0.0-development",
4+
"description": "",
5+
"keywords": [],
6+
"main": "dist/vue-transition-collection.umd.js",
7+
"module": "dist/vue-transition-collection.es5.js",
8+
"typings": "dist/types/vue-transition-collection.d.ts",
9+
"files": [
10+
"dist"
11+
],
12+
"author": "Lukas Troyer <36337818+lukas-tr@users.noreply.github.com>",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/lukas-tr/vue-transition-collection.git"
16+
},
17+
"license": "MIT",
18+
"engines": {
19+
"node": ">=6.0.0"
20+
},
21+
"scripts": {
22+
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
23+
"prebuild": "rimraf dist",
24+
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
25+
"build-demo": "cd demo && npm run build",
26+
"start": "rollup -c rollup.config.ts -w",
27+
"test": "jest",
28+
"test:watch": "jest --watch",
29+
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
30+
"deploy-docs": "ts-node tools/gh-pages-publish",
31+
"report-coverage": "codecov",
32+
"commit": "git-cz",
33+
"semantic-release": "semantic-release",
34+
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
35+
"travis-deploy-once": "travis-deploy-once",
36+
"serve": "rimraf .rpt2_cache && concurrently \"npm run start\" \"cd demo && npm run serve\" "
37+
},
38+
"husky": {
39+
"hooks": {
40+
"pre-commit": "lint-staged",
41+
"pre-push": "npm run test:prod && npm run build",
42+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
43+
}
44+
},
45+
"lint-staged": {
46+
"{src,test}/**/*.ts": [
47+
"tslint --fix --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
48+
"git add"
49+
]
50+
},
51+
"config": {
52+
"commitizen": {
53+
"path": "node_modules/cz-conventional-changelog"
54+
}
55+
},
56+
"jest": {
57+
"transform": {
58+
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js",
59+
".(js)": "<rootDir>/node_modules/babel-jest"
9460
},
95-
"devDependencies": {
96-
"@commitlint/cli": "^7.1.2",
97-
"@commitlint/config-conventional": "^7.1.2",
98-
"@types/jest": "^23.3.2",
99-
"@types/node": "^10.11.0",
100-
"@vue/test-utils": "^1.0.0-beta.26",
101-
"codecov": "^3.1.0",
102-
"colors": "^1.3.2",
103-
"commitizen": "^3.0.0",
104-
"concurrently": "^4.0.1",
105-
"coveralls": "^3.0.2",
106-
"cross-env": "^5.2.0",
107-
"cz-conventional-changelog": "^2.1.0",
108-
"husky": "^1.1.3",
109-
"jest": "^23.6.0",
110-
"jest-config": "^23.6.0",
111-
"jsdom": "^13.0.0",
112-
"jsdom-global": "^3.0.2",
113-
"lint-staged": "^7.3.0",
114-
"lodash.camelcase": "^4.3.0",
115-
"prettier": "^1.14.3",
116-
"prompt": "^1.0.0",
117-
"replace-in-file": "^3.4.2",
118-
"rimraf": "^2.6.2",
119-
"rollup": "^0.66.2",
120-
"rollup-plugin-commonjs": "^9.1.8",
121-
"rollup-plugin-json": "^3.1.0",
122-
"rollup-plugin-node-resolve": "^3.4.0",
123-
"rollup-plugin-sourcemaps": "^0.4.2",
124-
"rollup-plugin-typescript2": "^0.17.0",
125-
"semantic-release": "^15.10.8",
126-
"semantic-release-cli": "^4.0.9",
127-
"travis-deploy-once": "^5.0.9",
128-
"ts-jest": "^23.10.2",
129-
"ts-node": "^7.0.1",
130-
"tslint": "^5.11.0",
131-
"tslint-config-prettier": "^1.15.0",
132-
"tslint-config-standard": "^8.0.1",
133-
"typedoc": "^0.12.0",
134-
"typescript": "^3.0.3",
135-
"vue": "^2.5.17",
136-
"vue-template-compiler": "^2.5.17"
61+
"setupTestFrameworkScriptFile": "<rootDir>/tools/setupTests.js",
62+
"testEnvironment": "node",
63+
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
64+
"moduleFileExtensions": [
65+
"ts",
66+
"tsx",
67+
"js"
68+
],
69+
"coveragePathIgnorePatterns": [
70+
"/node_modules/",
71+
"/test/"
72+
],
73+
"coverageThreshold": {
74+
"global": {
75+
"branches": 60,
76+
"functions": 90,
77+
"lines": 90,
78+
"statements": 90
79+
}
13780
},
138-
"peerDependencies": {
139-
"vue": "^2.5.17"
140-
}
141-
}
81+
"collectCoverage": true,
82+
"collectCoverageFrom": [
83+
"src/*.{js,ts}"
84+
]
85+
},
86+
"prettier": {
87+
"semi": false,
88+
"singleQuote": false
89+
},
90+
"commitlint": {
91+
"extends": [
92+
"@commitlint/config-conventional"
93+
]
94+
},
95+
"devDependencies": {
96+
"@commitlint/cli": "^7.1.2",
97+
"@commitlint/config-conventional": "^7.1.2",
98+
"@types/jest": "^23.3.2",
99+
"@types/node": "^10.11.0",
100+
"@vue/test-utils": "^1.0.0-beta.26",
101+
"codecov": "^3.1.0",
102+
"colors": "^1.3.2",
103+
"commitizen": "^3.0.0",
104+
"concurrently": "^4.0.1",
105+
"coveralls": "^3.0.2",
106+
"cross-env": "^5.2.0",
107+
"cz-conventional-changelog": "^2.1.0",
108+
"husky": "^1.1.3",
109+
"jest": "^23.6.0",
110+
"jest-config": "^23.6.0",
111+
"jsdom": "^13.0.0",
112+
"jsdom-global": "^3.0.2",
113+
"lint-staged": "^7.3.0",
114+
"lodash.camelcase": "^4.3.0",
115+
"prettier": "^1.14.3",
116+
"prompt": "^1.0.0",
117+
"replace-in-file": "^3.4.2",
118+
"rimraf": "^2.6.2",
119+
"rollup": "^0.66.2",
120+
"rollup-plugin-commonjs": "^9.1.8",
121+
"rollup-plugin-json": "^3.1.0",
122+
"rollup-plugin-node-resolve": "^3.4.0",
123+
"rollup-plugin-sourcemaps": "^0.4.2",
124+
"rollup-plugin-typescript2": "^0.17.0",
125+
"semantic-release": "^15.10.8",
126+
"semantic-release-cli": "^4.0.9",
127+
"travis-deploy-once": "^5.0.9",
128+
"ts-jest": "^23.10.2",
129+
"ts-node": "^7.0.1",
130+
"tslint": "^5.11.0",
131+
"tslint-config-prettier": "^1.15.0",
132+
"tslint-config-standard": "^8.0.1",
133+
"typedoc": "^0.12.0",
134+
"typescript": "^3.0.3",
135+
"vue": "^2.5.17",
136+
"vue-template-compiler": "^2.5.17"
137+
},
138+
"peerDependencies": {
139+
"vue": "^2.5.17"
140+
}
141+
}

0 commit comments

Comments
 (0)