Skip to content

Commit 05688e3

Browse files
author
tvillaren
committed
Bumping 1.0.0
1 parent 5df9d34 commit 05688e3

File tree

1 file changed

+76
-55
lines changed

1 file changed

+76
-55
lines changed

package.json

Lines changed: 76 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,78 @@
11
{
2-
"name": "vuexorm-isdirty-plugin",
3-
"version": "0.0.1",
4-
"description": "Vuex ORM plugin adding IsDirty / IsNew flags to model entities",
5-
"author": "Thomas Villaren",
6-
"main": "dist/index.js",
7-
"devDependencies": {
8-
"@babel/core": "^7.0.0-beta.53",
9-
"@vuex-orm/core": "^0.31.1",
10-
"babel": "^6.23.0",
11-
"babel-cli": "^6.26.0",
12-
"babel-core": "^6.26.3",
13-
"babel-plugin-istanbul": "^1.1.0",
14-
"babel-polyfill": "^6.26.0",
15-
"babel-preset-env": "^1.7.0",
16-
"babel-preset-stage-2": "^6.24.1",
17-
"babel-register": "^6.26.0",
18-
"chai": "^4.1.2",
19-
"cross-env": "^5.2.0",
20-
"mocha": "^5.2.0",
21-
"mocha-webpack": "2.0.0-beta.0",
22-
"nyc": "^11.9.0",
23-
"vue": "^2.5.16",
24-
"vuex": "^3.0.1",
25-
"webpack": "^4.16.0",
26-
"webpack-cli": "^3.0.8"
27-
},
28-
"dependencies": {},
29-
"scripts": {
30-
"build": "webpack",
31-
"test": "cross-env NODE_ENV=test mocha --require babel-register --require babel-polyfill \"test/unit/**/*.js\"",
32-
"cover": "cross-env NODE_ENV=test nyc mocha --require babel-register --require babel-polyfill \"test/unit/**/*.js\"",
33-
"transpile": "babel src -d .transpiled -s"
34-
},
35-
"nyc": {
36-
"all": false,
37-
"reporter": [
38-
"lcov",
39-
"text"
40-
],
41-
"report-dir": "./test/coverage",
42-
"exclude": [
43-
"**/node_modules/**",
44-
".tmp",
45-
"test"
46-
],
47-
"extension": [
48-
"js"
49-
],
50-
"cache": true,
51-
"sourceMap": false,
52-
"instrument": false
53-
},
54-
"resolutions": {
55-
"eslint-scope": "3.7.1"
56-
}
2+
"name": "@vuex-orm/plugin-change-flags",
3+
"version": "1.0.0",
4+
"description": "Vuex ORM plugin adding IsDirty / IsNew flags to model entities",
5+
"author": "Thomas Villaren",
6+
"main": "dist/index.js",
7+
"devDependencies": {
8+
"@babel/core": "^7.0.0-beta.53",
9+
"@vuex-orm/core": "^0.31.1",
10+
"babel": "^6.23.0",
11+
"babel-cli": "^6.26.0",
12+
"babel-core": "^6.26.3",
13+
"babel-plugin-istanbul": "^1.1.0",
14+
"babel-polyfill": "^6.26.0",
15+
"babel-preset-env": "^1.7.0",
16+
"babel-preset-stage-2": "^6.24.1",
17+
"babel-register": "^6.26.0",
18+
"chai": "^4.1.2",
19+
"cross-env": "^5.2.0",
20+
"mocha": "^5.2.0",
21+
"mocha-webpack": "2.0.0-beta.0",
22+
"nyc": "^11.9.0",
23+
"vue": "^2.5.16",
24+
"vuex": "^3.0.1",
25+
"webpack": "^4.16.0",
26+
"webpack-cli": "^3.0.8"
27+
},
28+
"dependencies": {},
29+
"scripts": {
30+
"build": "webpack",
31+
"test": "cross-env NODE_ENV=test mocha --require babel-register --require babel-polyfill \"test/unit/**/*.js\"",
32+
"cover": "cross-env NODE_ENV=test nyc mocha --require babel-register --require babel-polyfill \"test/unit/**/*.js\"",
33+
"transpile": "babel src -d .transpiled -s"
34+
},
35+
"nyc": {
36+
"all": false,
37+
"reporter": [
38+
"lcov",
39+
"text"
40+
],
41+
"report-dir": "./test/coverage",
42+
"exclude": [
43+
"**/node_modules/**",
44+
".tmp",
45+
"test"
46+
],
47+
"extension": [
48+
"js"
49+
],
50+
"cache": true,
51+
"sourceMap": false,
52+
"instrument": false
53+
},
54+
"resolutions": {
55+
"eslint-scope": "3.7.1"
56+
},
57+
"directories": {
58+
"test": "test"
59+
},
60+
"repository": {
61+
"type": "git",
62+
"url": "git+https://github.com/vuex-orm/plugin-change-flags.git"
63+
},
64+
"keywords": [
65+
"ORM",
66+
"Vuex",
67+
"Vuex",
68+
"ORM",
69+
"isDirty",
70+
"isNew",
71+
"change-tracking"
72+
],
73+
"license": "MIT",
74+
"bugs": {
75+
"url": "https://github.com/vuex-orm/plugin-change-flags/issues"
76+
},
77+
"homepage": "https://github.com/vuex-orm/plugin-change-flags#readme"
5778
}

0 commit comments

Comments
 (0)