forked from vuex-orm/vuex-orm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.84 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
83
84
85
86
87
88
89
90
{
"name": "@vuex-orm/core",
"version": "0.24.3",
"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": "tslint 'src/**/*.ts' -c tslint.json -p . --fix",
"test": "mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'test/**/*.spec.js'",
"test:watch": "mocha-webpack --webpack-config test/webpack.config.js --watch --require test/bootstrap.js 'test/**/*.spec.js'",
"test:coverage": "mocha-webpack --webpack-config test/webpack.config.js --require test/bootstrap.js 'src/**/*.js' 'test/**/*.spec.js'",
"coverage": "NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test:coverage",
"docs": "cd docs && gitbook install && gitbook serve",
"docs:deploy": "cd docs && bash ./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": {
"@types/sinon": "^4.3.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"codecov.io": "^0.1.6",
"expect": "^22.4.3",
"fork-ts-checker-webpack-plugin": "^0.4.1",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^3.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^5.0.5",
"mocha-webpack": "2.0.0-beta.0",
"normalizr": "^3.2.4",
"nyc": "^11.6.0",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^4.5.0",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.1",
"uglify-js": "^3.3.20",
"vue": "^2.5.16",
"vuex": "^3.0.1",
"webpack": "^4.5.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/support/polyfills.ts",
"src/support/Utils.ts"
],
"instrument": false,
"sourceMap": false
}
}