-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.25 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
{
"name": "@fazland/atlante",
"version": "1.0.0",
"description": "JS Http Client",
"license": "MIT",
"main": "lib/api.js",
"typings": "index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "node ./tests.js \"test/**/*.js\" && eslint lib/",
"coverage": "nyc npm test",
"coverage-html": "nyc --reporter=html npm test"
},
"author": "[email protected]",
"dependencies": {
"@jymfony/util": "^0.1.0-alpha.18"
},
"devDependencies": {
"@jymfony/autoloader": "^0.1.0-alpha.18",
"@jymfony/debug": "^0.1.0-alpha.18",
"@jymfony/testing": "^0.1.0-alpha.18",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"node-localstorage": "^1.3.1",
"nyc": "^14.1.1",
"whatwg-url": "^7.0.0"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Fazland.Atlante": "lib"
}
}
},
"nyc": {
"per-file": true,
"hookRequire": true,
"hookRunInContext": true,
"hookRunInThisContext": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"**/tests.js",
"**/namespace-stub.js",
"**/fixtures/**",
"**/test/**"
],
"reporter": [
"text-summary",
"text",
"clover"
],
"all": true,
"report-dir": "./coverage"
}
}