forked from vuex-orm/vuex-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.3 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.3 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@vuex-orm/core",
"version": "0.35.0",
"description": "The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.",
"main": "dist/vuex-orm.common.js",
"module": "dist/vuex-orm.esm.js",
"unpkg": "dist/vuex-orm.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",
"clean": "rm -rf dist && rm -rf lib && rm -rf dist && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp",
"lint": "yarn lint:ts && yarn lint:js",
"lint:ts": "tslint '{src,test}/**/*.ts' -c tslint.json -p . --fix",
"lint:js": "yarn eslint --fix --ext js .",
"test": "jest --testPathIgnorePatterns test/performance",
"test:watch": "jest --testPathIgnorePatterns test/performance --watch",
"test:perf": "jest --testPathIgnorePatterns test/{feature,unit}",
"test:perf:watch": "jest --testPathIgnorePatterns test/{feature,unit} --watch",
"test:all": "jest",
"coverage": "jest --testPathIgnorePatterns test/performance --collect-coverage",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash ./docs/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuex-orm/vuex-orm.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm",
"orm"
],
"author": "Kia Ishii",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/vuex-orm/issues"
},
"peerDependencies": {
"vuex": ">=3.1.0"
},
"dependencies": {
"normalizr": "3.4.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/jest": "^24.9.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"codecov": "^3.6.2",
"core-js": "^2.6.11",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"rollup": "^1.30.0",
"ts-jest": "^25.0.0",
"tslint": "^6.0.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.5",
"uglify-js": "^3.7.6",
"vue": "^2.6.11",
"vue-server-renderer": "^2.6.11",
"vuepress": "^1.2.0",
"vuepress-theme-vue": "^1.1.0",
"vuex": "^3.1.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"moduleNameMapper": {
"^app/(.*)$": "<rootDir>/src/$1",
"^test/(.*)$": "<rootDir>/test/$1"
},
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/attributes/types/Increment.ts",
"!src/polyfills/index.ts",
"!src/support/Utils.ts",
"!src/index.cjs.ts",
"!src/index.ts",
"!**/node_modules/**"
],
"coverageReporters": [
"json",
"lcov",
"text-summary",
"clover"
]
}
}