-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 908 Bytes
/
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
{
"name": "vuex-typescript-fsa",
"version": "0.4.1",
"description": "The helper which makes vuex more type-safety",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"vuex": "^3.0.1"
},
"devDependencies": {
"@types/jest": "25.1.4",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"codecov": "3.6.5",
"js-yaml": "3.13.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"jest": "25.2.3",
"prettier": "2.0.2",
"ts-jest": "25.2.1",
"typescript": "3.8.3",
"vue": "2.6.11"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:types": "tsc -p ./test/types/tsconfig.json",
"codecov": "codecov"
},
"keywords": [
"vuex",
"TypeScript"
],
"author": "sue71",
"license": "MIT"
}