-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
74 lines (74 loc) · 2.23 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
{
"name": "jsonapi-store-relationaldb",
"version": "5.0.0",
"description": "Relational data store for jsonapi-server.",
"keywords": [
"json:api",
"jsonapi",
"persistence",
"store",
"mysql",
"postgres",
"mssql"
],
"main": "lib/sqlHandler.js",
"author": "Oliver Rumbelow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/holidayextras/jsonapi-store-relationaldb.git"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"async": "2.6.0",
"debug": "3.1.0",
"joi": "12.0.0",
"lodash": "4.17.4",
"semver": "5.4.1",
"sequelize": "4.28.0"
},
"devDependencies": {
"blanket": "1.2.3",
"coveralls": "3.0.0",
"eslint": "4.13.1",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"jsonapi-server": "4.1.2",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"mocha": "4.0.1",
"mocha-lcov-reporter": "1.3.0",
"mocha-performance": "0.1.1",
"mysql2": "1.5.1",
"pg": "7.4.0",
"pg-hstore": "2.3.2",
"plato": "1.7.0",
"sqlite3": "3.1.13",
"v8-profiler": "5.7.0"
},
"scripts": {
"test": "bash -c './setupDatabase.sh jsonapi-relationaldb-test $SEQUELIZE_DIALECT && mocha --exit --timeout 20000 -R spec ./test/*.js'",
"start": "node example/server.js",
"coveralls": "mocha --exit --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "mocha --exit --timeout 20000 --require blanket --reporter html-cov ./test/*.js > coverage.html || true",
"complexity": "plato -r -d complexity lib",
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha --reporter mocha-performance ./test/*.js",
"lint": "eslint ./example/*.js ./lib/* ./test/*.js --quiet && echo '✔ All good!'",
"ci": "npm run lint && SEQUELIZE_DIALECT=mysql npm run test && SEQUELIZE_DIALECT=postgres npm run test"
},
"config": {
"blanket": {
"pattern": ".js",
"data-cover-never": [
"node_modules",
"test"
]
}
}
}