-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "@manutero/randomjs",
"version": "0.3.0",
"description": "Humanized random functions",
"keywords": [
"random",
"random-generator",
"normal-distribution"
],
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test jest --verbose",
"lint": "eslint . -f table .",
"types": "tsc --build tsconfig.json",
"blue-ball": "npm run lint && npm run types && npm test",
"console": "cat console.js - | node -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manutero/randomjs.git"
},
"author": "manutero.developer@gmail.com",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/manutero/randomjs/issues"
},
"homepage": "https://github.com/manutero/randomjs#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.22",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"semantic-release": "^17.4.2"
}
}