-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 935 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 935 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
34
35
36
37
38
39
40
41
42
{
"name": "@dev-aces/robokassa",
"version": "1.2.0",
"description": "Robokassa Node.JS integration",
"types": "lib/index.d.ts",
"keywords": [
"Robokassa",
"typescript"
],
"files": [
"/lib",
"/src",
"LICENSE",
"README.md"
],
"main": "lib/index.js",
"repository": "git://github.com/dev-aces/robokassa.git",
"author": "Artur Ampilogov",
"license": "MIT",
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && tsc",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "jest",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-push": "npm run format && npm run build && npm test"
}
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.2",
"husky": "^4.2.5",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
}
}