-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "algebraic-captcha",
"version": "1.0.0",
"description": "NodeJS math captcha package with algebraic formulas",
"main": "build/index.js",
"types": "build/index.d.ts",
"private": false,
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "npm run clean-build && tsc",
"clean-build": "rm -rf build",
"clean-coverage": "rm -rf coverage",
"lint": "prettier-tslint fix '**/*.ts'",
"check": "npm outdated",
"test-unit": "mocha --opts mocha.opts",
"test": "npm run test-unit",
"cm": "git-cz",
"watch": "tsc -w",
"demo": "node demo/generate.js && node_modules/.bin/gh-pages -d demo",
"prepublish": "publish-please guard",
"publish-please": "publish-please"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{ts}": [
"npm run lint",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tormozz48/algebraic-captcha.git"
},
"keywords": [
"captcha",
"nodejs",
"node",
"math",
"algebraic",
"formulas"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tormozz48/algebraic-captcha/issues"
},
"homepage": "https://github.com/tormozz48/algebraic-captcha#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/joi": "^14.0.1",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"handlebars": "^4.0.12",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"prettier-tslint": "^0.4.1",
"publish-please": "^5.4.3",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2"
},
"dependencies": {
"@types/lodash": "^4.14.191",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"svg-captcha": "^1.4.0"
}
}