generated from shadowlion/setup-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "transactapi-js",
"version": "0.0.21",
"description": "Javascript SDK for Transact API services.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"start": "ts-node src/index.ts",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"axios": "^0.27.2",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/shadowlion/transactapi-js.git"
},
"keywords": [
"typescript"
],
"author": "Justin Chiou <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shadowlion/transactapi-js/issues"
},
"homepage": "https://github.com/shadowlion/transactapi-js#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/shadowlion"
}
}