-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "vuex-persistedstate-migrate",
"description": "Library to migrate vuex state using vuex-persistedstate",
"author": "GrandChef Team <desenvolvimento@grandchef.com.br>",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/grandchef/vuex-persistedstate-migrate.git"
},
"homepage": "https://github.com/grandchef/vuex-persistedstate-migrate#readme",
"bugs": {
"url": "https://github.com/grandchef/vuex-persistedstate-migrate/issues"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf coverage dist tmp",
"build": "tsc -d -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"style:fix": "prettier --write \"src/**/*.ts\"",
"style:check": "prettier --check \"src/**/*.ts\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk=9229 node_modules/.bin/jest -i"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.21.0",
"typescript": "^4.2.3"
},
"dependencies": {
"tslib": "^2.1.0"
}
}