-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "fakergem",
"version": "2.1.0",
"description": "A javascript version of the Faker ruby gem",
"main": "./lib/index.js",
"scripts": {
"version:patch": "npm version patch",
"build": "./node_modules/.bin/tsc",
"format": "./node_modules/.bin/prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "./node_modules/.bin/tslint -p tsconfig.json --fix",
"test": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register test/**/*.test.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrstebo/fakergem.git"
},
"keywords": [
"fakergem",
"faker",
"gem"
],
"author": {
"name": "Steven Atkinson",
"email": "mrstebouk@gmail.com",
"url": "http://mrstebo.co.uk"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrstebo/fakergem/issues"
},
"homepage": "https://github.com/mrstebo/fakergem#readme",
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.1",
"@types/sinon": "^7.5.2",
"@types/sinon-test": "^2.4.0",
"chai": "^4.0.2",
"chai-datetime": "^1.5.0",
"coveralls": "^3.0.9",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"sinon-test": "^3.0.0",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"bs58": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"**/*.js": [
"yarn lint",
"git add"
]
}
}