forked from robiveli/js-captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "js-captcha",
"title": "JavaScript Captcha",
"description": "Simple captcha component written in pure JavaScript with no dependencies based on canvas element",
"version": "1.2.1",
"license": "MIT",
"author": {
"name": "Robert Velickovski",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/robiveli/js-captcha.git"
},
"main": "dist/js/index.js",
"keywords": [
"captcha",
"vanilla",
"simple",
"dependency-free",
"lightweight",
"javascript"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"grunt": "^1.1.0",
"grunt-babel": "^8.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-umd": "^3.0.0",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.2.0",
"load-grunt-tasks": "^5.1.0"
},
"scripts": {
"preinstall": "npm install -g np npm-check-updates",
"watch": "grunt watch",
"build": "grunt build && ncu",
"dependency-check": "ncu",
"dependency-update": "ncu -u && npm install && npm audit fix",
"test": "jest --coverage",
"publish": "npm run test && np --no-yarn"
}
}