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
101 lines (101 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.76 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
{
"name": "@vuex-orm/core",
"version": "0.31.9",
"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": "npm run clean && npm run build:ts && npm run build:main && tsc -p .",
"build:ts": "tsc -p .",
"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": "npm run lint:ts && npm run lint:js",
"lint:ts": "tslint 'src/**/*.ts' -c tslint.json -p . --fix",
"lint:js": "yarn eslint --fix --ext js .",
"test": "cross-env mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'test/{feature,unit}/**/*.spec.js'",
"test:ts": "tslint 'test/types/**/*.spec.ts' -c tslint.json -p tsconfig.test.json",
"test:watch": "cross-env mocha-webpack --webpack-config test/webpack.config.js --watch --require test/bootstrap.js 'test/{feature,unit}/**/*.spec.js'",
"test:perf": "cross-env mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'test/performance/**/*.spec.js'",
"test:perf:watch": "cross-env mocha-webpack --webpack-config test/webpack.config.js --watch --require test/bootstrap.js 'test/performance/**/*.spec.js'",
"test:all": "cross-env mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'test/{feature,performance,unit}/**/*.spec.js' && npm run test:ts",
"test:coverage": "cross-env mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'src/**/*.js' 'test/{feature,unit}/**/*.spec.js'",
"coverage": "NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test:coverage",
"docs": "vuepress dev docs",
"docs:lint": "yarn eslint --ext md .",
"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"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"codecov": "^3.3.0",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"expect": "^24.7.1",
"fork-ts-checker-webpack-plugin": "^1.0.2",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^6.1.3",
"mocha-webpack": "2.0.0-beta.0",
"normalizr": "^3.3.0",
"nyc": "^13.3.0",
"rollup": "^1.10.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.2.0",
"ts-loader": "^5.3.2",
"tslint": "^5.15.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.3",
"uglify-js": "^3.5.4",
"vue": "2.5.22",
"vuepress": "^0.14.11",
"vuepress-theme-vue": "^1.1.0",
"vuex": "^3.1.0",
"webpack": "^4.30.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/polyfills/index.ts",
"src/support/Utils.ts"
],
"instrument": false,
"sourceMap": false
}
}