-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "white-summoner",
"version": "0.2.0",
"description": "A user generator with realistic anagraphic data",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "npm run test:unit && npm run test:integration && npm run test:coverage",
"test:unit": "nyc --reporter=html --reporter=text mocha lib/**/*/**/__test/*.spec.js --recursive",
"test:integration": "mocha test/integration/*.spec.js",
"test:coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t d61883dd-934b-40cc-92c3-a74f0c1b9a03",
"build:deptree": "depcruise --exclude '^node_modules' --output-type dot lib | dot -T svg > dependencygraph.svg"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ugobriasco/white-summoner.git"
},
"keywords": [
"user-generator",
"fintech",
"ecommerce",
"kyc",
"testing-tools"
],
"author": "Ugo Briasco",
"license": "MIT",
"bugs": {
"url": "https://github.com/ugobriasco/white-summoner/issues"
},
"homepage": "https://github.com/ugobriasco/white-summoner#readme",
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.6.5",
"dependency-cruiser": "^8.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prettier": "^2.0.1"
},
"dependencies": {
"faker": "^4.1.0",
"lodash.deburr": "^4.1.0"
}
}