-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "vue-function-tester",
"version": "1.2.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"prepublishOnly": "npm run build",
"eslint": "eslint src spec --ext js,ts,vue",
"eslint:fix": "yarn eslint --fix",
"test": "NODE_ENV=test jest --runInBand",
"test:watch": "NODE_ENV=test jest --runInBand --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipopotamasu/vue-function-tester.git"
},
"keywords": [
"Vue.js",
"TypeScript",
"test"
],
"files": [
"dist"
],
"author": "pipopotamasu",
"license": "MIT",
"bugs": {
"url": "https://github.com/pipopotamasu/vue-function-tester/issues"
},
"homepage": "https://github.com/pipopotamasu/vue-function-tester#readme",
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.4",
"vue": "^2.6.11",
"vue-eslint-parser": "^7.0.0",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11"
}
}