-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "vuexorm-softdelete-plugin",
"version": "1.1.0",
"description": "Vuex ORM plugin adding soft delete capability. Based on an original idea from Conan Crawford.",
"author": "Conan Crawford <cj@cjcrawford.com> / Thomas Villaren <tvillaren@gmail.com>",
"main": "dist/index.js",
"devDependencies": {
"@babel/core": "^7.3.4",
"@vuex-orm/core": "^0.31.6",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^1.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"mocha-webpack": "2.0.0-beta.0",
"nyc": "^11.9.0",
"vue": "^2.5.16",
"vuex": "^3.0.1",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {},
"scripts": {
"build": "webpack",
"test": "cross-env NODE_ENV=test mocha --require babel-register --require babel-polyfill \"test/unit/**/*.js\"",
"cover": "cross-env NODE_ENV=test nyc mocha --require babel-register --require babel-polyfill \"test/unit/**/*.js\"",
"transpile": "babel src -d .transpiled -s"
},
"nyc": {
"all": false,
"reporter": [
"lcov",
"text"
],
"report-dir": "./test/coverage",
"exclude": [
"**/node_modules/**",
".tmp",
"test"
],
"extension": [
"js"
],
"cache": true,
"sourceMap": false,
"instrument": false
},
"resolutions": {
"eslint-scope": "3.7.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuex-orm/plugin-change-flags.git"
},
"keywords": [
"ORM",
"Vuex",
"Vuex",
"ORM",
"isDirty",
"isNew",
"change-tracking"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/plugin-change-flags/issues"
},
"homepage": "https://github.com/vuex-orm/plugin-change-flags#readme"
}