Skip to content

Commit 56f53c1

Browse files
committed
updating version to 0.4.1-megawin-sim
1 parent 6ed4b2d commit 56f53c1

File tree

1 file changed

+66
-66
lines changed

1 file changed

+66
-66
lines changed

package.json

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,84 @@
11
{
2-
"license": "MIT",
2+
"license": "MIT",
33
"engines": {
44
"node": "*"
5-
},
5+
},
6+
"description": "A config driven NodeJS framework implementing json:api",
67
"repository": {
7-
"url": "https://github.com/holidayextras/jsonapi-server",
8+
"url": "https://github.com/holidayextras/jsonapi-server",
89
"type": "git"
9-
},
10-
"author": "Oliver Rumbelow",
11-
"description": "A config driven NodeJS framework implementing json:api",
12-
"version": "0.3.1-megawin-sim",
10+
},
11+
"author": "Oliver Rumbelow",
12+
"version": "0.4.1-megawin-sim",
1313
"dependencies": {
14-
"async": "^2.0.1",
15-
"body-parser": "^1.15.1",
16-
"cookie-parser": "^1.4.3",
17-
"debug": "^2.2.0",
18-
"express": "^4.13.4",
19-
"express-graphql": "^0.5.4",
20-
"graphql": "^0.7.0",
21-
"istanbul": "^0.4.5",
22-
"joi": "^9.0.4",
23-
"lodash.assign": "^4.0.9",
24-
"lodash.isequal": "^4.2.0",
25-
"lodash.omit": "^4.3.0",
26-
"lodash.pick": "^4.2.1",
27-
"lodash.uniq": "^4.3.0",
28-
"lodash.uniqby": "^4.5.0",
29-
"node-uuid": "^1.4.7",
30-
"qs": "^6.2.0",
31-
"request": "^2.72.0",
32-
"use-strict": "^1.0.1"
33-
},
14+
"use-strict": "^1.0.1",
15+
"qs": "^6.2.0",
16+
"lodash.isequal": "^4.2.0",
17+
"istanbul": "^0.4.5",
18+
"cookie-parser": "^1.4.3",
19+
"node-uuid": "^1.4.7",
20+
"lodash.uniqby": "^4.5.0",
21+
"express": "^4.13.4",
22+
"request": "^2.72.0",
23+
"body-parser": "^1.15.1",
24+
"lodash.pick": "^4.2.1",
25+
"graphql": "^0.7.0",
26+
"joi": "^9.0.4",
27+
"debug": "^2.2.0",
28+
"async": "^2.0.1",
29+
"express-graphql": "^0.5.4",
30+
"lodash.assign": "^4.0.9",
31+
"lodash.uniq": "^4.3.0",
32+
"lodash.omit": "^4.3.0"
33+
},
3434
"scripts": {
35-
"coveralls": "node ./node_modules/mocha/bin/mocha -S --require blanket --reporter mocha-lcov-reporter ./test/*.js | node ./node_modules/coveralls/bin/coveralls.js",
36-
"flow": "node ./node_modules/flow-bin/cli.js && echo '\u2714 All good!'",
37-
"lint": "node ./node_modules/eslint/bin/eslint ./apple ./lib ./test --quiet && echo '\u2714 All good!'",
38-
"stop": "pkill jsonapi-server",
39-
"start": "node apple/server.js",
40-
"complexity": "node ./node_modules/plato/bin/plato -r -d complexity lib",
41-
"jscpd": "jscpd --blame -p ./lib/ || echo 'Finished!'",
42-
"coverage": "node ./node_modules/mocha/bin/mocha -S --require blanket --reporter html-cov ./test/*.js > coverage.html",
43-
"test": "node ./node_modules/mocha/bin/mocha -S -R spec ./test/*.js",
44-
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha -S --reporter mocha-performance ./test/*.js",
35+
"coveralls": "node ./node_modules/mocha/bin/mocha -S --require blanket --reporter mocha-lcov-reporter ./test/*.js | node ./node_modules/coveralls/bin/coveralls.js",
36+
"flow": "node ./node_modules/flow-bin/cli.js && echo '\u2714 All good!'",
37+
"lint": "node ./node_modules/eslint/bin/eslint ./apple ./lib ./test --quiet && echo '\u2714 All good!'",
38+
"stop": "pkill jsonapi-server",
39+
"start": "node apple/server.js",
40+
"complexity": "node ./node_modules/plato/bin/plato -r -d complexity lib",
41+
"jscpd": "jscpd --blame -p ./lib/ || echo 'Finished!'",
42+
"coverage": "node ./node_modules/mocha/bin/mocha -S --require blanket --reporter html-cov ./test/*.js > coverage.html",
43+
"test": "node ./node_modules/mocha/bin/mocha -S -R spec ./test/*.js",
44+
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha -S --reporter mocha-performance ./test/*.js",
4545
"swagger": "node ./node_modules/mocha/bin/mocha -S -R spec ./swaggerValidator.js --timeout 60000"
46-
},
46+
},
4747
"keywords": [
48-
"jsonapi",
49-
"json:api",
50-
"swagger",
48+
"jsonapi",
49+
"json:api",
50+
"swagger",
5151
"api"
52-
],
52+
],
5353
"devDependencies": {
54-
"eslint": "^3.6.1",
55-
"eslint-config-standard": "^6.1.0",
56-
"eslint-plugin-promise": "^3.3.0",
57-
"eslint-plugin-standard": "^2.0.0",
58-
"jscpd": "^0.6.1",
59-
"lokka": "^1.7.0",
60-
"lokka-transport-http": "^1.4.0",
61-
"mocha": "^3.1.0",
62-
"mocha-performance": "^0.1.1",
63-
"node-inspector": "^0.12.8",
64-
"plato": "^1.7.0",
65-
"swagger-tools": "^0.10.1",
66-
"v8-profiler": "^5.6.5",
67-
"coveralls": "^2.11.9",
68-
"blanket": "1.1.9",
69-
"mocha-lcov-reporter": "^1.2.0",
70-
"flow-bin": "^0.26.0"
71-
},
72-
"main": "lib/jsonApi.js",
54+
"lokka": "^1.7.0",
55+
"coveralls": "^2.11.9",
56+
"mocha-lcov-reporter": "^1.2.0",
57+
"eslint-plugin-promise": "^3.3.0",
58+
"blanket": "1.1.9",
59+
"plato": "^1.7.0",
60+
"eslint-config-standard": "^6.1.0",
61+
"mocha": "^3.1.0",
62+
"swagger-tools": "^0.10.1",
63+
"v8-profiler": "^5.6.5",
64+
"eslint": "^3.6.1",
65+
"lokka-transport-http": "^1.4.0",
66+
"mocha-performance": "^0.1.1",
67+
"eslint-plugin-standard": "^2.0.0",
68+
"flow-bin": "^0.26.0",
69+
"node-inspector": "^0.12.8",
70+
"jscpd": "^0.6.1"
71+
},
72+
"main": "lib/jsonApi.js",
7373
"config": {
7474
"blanket": {
75-
"pattern": ".js",
75+
"pattern": ".js",
7676
"data-cover-never": [
77-
"node_modules",
78-
"test",
77+
"node_modules",
78+
"test",
7979
"apple"
8080
]
8181
}
82-
},
82+
},
8383
"name": "jsonapi-server"
84-
}
84+
}

0 commit comments

Comments
 (0)