-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.89 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
{
"main": "index.js",
"name": "@naturacosmeticos/async-hooks-storage",
"author": "Natura Cosméticos <TDDAArquitetura@natura.net>",
"version": "1.0.0",
"engines": {
"node": ">= 8.1.0"
},
"contributors": [
"Murilo Portescheller <murilo.portescheller@avanade.com>",
"Giancarlo Bonansea <giancarlo.bonansea@accenture.com>"
],
"devDependencies": {
"@naturacosmeticos/eslint-config-natura": "^1.1.1",
"chai": "^4.1.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-node": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.2",
"faker": "^4.1.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nyc": "^11.9.0",
"sinon": "^5.1.1"
},
"scripts": {
"docs": "./node_modules/.bin/esdoc -c .esdoc.json",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"test": "mocha --recursive --exit",
"test:unit": "mocha --recursive",
"test:coverage": "nyc --reporter=text mocha --recursive",
"test:watch": "mocha -w",
"transpile": "echo ok",
"package": "bash package.sh",
"snyk-protect": "snyk protect"
},
"nyc": {
"all": true,
"check-coverage": true,
"per-file": false,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"dependencies": {
"object-sizeof": "^1.4.0",
"uuid": "^3.3.2"
},
"homepage": "https://github.com/natura-cosmeticos/async-hooks-storage#readme",
"bugs": "https://github.com/natura-cosmeticos/async-hooks-storage/issues",
"license": "MIT",
"snyk": true
}