forked from fourcube/lambda-captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 879 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 879 Bytes
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
{
"name": "@solargis/lambda-captcha",
"version": "3.0.0",
"description": "Generates captchas that can be verified decentrally, e.g. in Lambda function",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "rimraf dist; tsc && cp -r fonts dist/fonts",
"test": "jest",
"tdd": "jest --watch",
"preversion": "git push && npm run build && npm run test",
"version": "npm publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/opentype.js": "^0.7.2",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.6.2",
"typescript": "~3.7.3"
},
"dependencies": {
"opentype.js": "^1.1.0",
"tslib": "^1.9.3"
},
"types": "dist/index.d.ts"
}