-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@vuex-orm/decorator",
"version": "0.1.0",
"description": "Vuex ORM decorator for model field definitions.",
"main": "dist/vuex-orm-decorator.common.js",
"module": "dist/vuex-orm-decorator.esm.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "yarn clean && yarn build:ts && yarn build:main ",
"build:ts": "tsc -p tsconfig.build.json",
"build:main": "node build/build.js",
"lint": "tslint '{src,test}/**/*.ts' -c tslint.json -p . --fix",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --collect-coverage",
"clean": "rm -rf dist && rm -rf lib && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp"
},
"repository": {
"type": "git",
"url": "https://github.com/vuex-orm/vuex-orm-decorator.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm"
],
"author": "Kia Ishii <kia.king.08@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/vuex-orm-decorator/issues"
},
"dependencies": {
"@vuex-orm/core": "^0.33.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"rollup": "^1.27.1",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2",
"uglify-js": "^3.6.9",
"vue": "^2.6.10",
"vuex": "^3.1.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^test/(.*)$": "<rootDir>/test/$1"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/index.ts",
"!src/index.cjs.ts",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"lcov",
"text-summary",
"clover"
]
}
}