-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.59 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
{
"name": "ilorm",
"version": "0.15.2",
"description": "Core package of ilorm ORM",
"main": "index.js",
"scripts": {
"docs": "jsdoc -r /lib -d docs",
"eslint": "eslint --fix lib/** spec/**",
"pretest": "ln -sfn .. ./node_modules/ilorm",
"test": "npm run launchtest",
"test-win": "mocha --recursive *.test.js lib spec",
"launchtest": "mocha --recursive $(find -name '*.test.js' -not -path '**/node_modules/**' )",
"cover": "nyc -r lcov npm test",
"cover-win": "nyc npm run test-win",
"circle_ci_test": "NODE_ENV=test nyc node_modules/mocha/bin/_mocha --recursive --reporter spec $(find -name '*.test.js' -not -path '**/node_modules/**' )"
},
"keywords": [
"orm",
"core",
"ilorm"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.4.0",
"ilorm-connector-knex": "^0.4.0",
"jsdoc": "^3.6.4",
"mocha": "^8.0.1",
"mysql2": "^2.1.0",
"nyc": "^15.0.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"nyc": {
"all": true,
"cache": true,
"check-coverage": true,
"per-file": true,
"report-dir": "./coverage",
"branches": [
0,
95
],
"functions": [
0,
95
],
"statements": [
0,
95
],
"lines": [
0,
95
],
"reporter": [
"html",
"text-summary"
],
"include": [
"index.js",
"lib/**/*.js"
],
"exclude": [
"*.test.js",
"lib/**/*.test.js"
]
},
"author": "guillaume DAIX",
"license": "MIT"
}