-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "trolleyhq",
"version": "1.1.0",
"description": "Trolley's JavaScript SDK",
"keywords": [
"Trolley",
"PaymentRails",
"Payment Rails"
],
"author": "Trolley",
"license": "ISC",
"bugs":{
"url": "https://github.com/Trolley/javascript-sdk/issues",
"email" : "developer-tools@trolley.com"
},
"homepage": "https://github.com/Trolley/javascript-sdk/",
"repository": {
"type": "git",
"url": "https://github.com/Trolley/javascript-sdk.git"
},
"main": "./dist/index",
"types": "./dist/index",
"directories": {
"test": "test"
},
"files": [
"dist",
"lib"
],
"scripts": {
"test": "mocha",
"build": "rm -rf dist/ && tsc && echo Done",
"docs": "./node_modules/.bin/typedoc --mode file --name 'Trolley JavaScript SDK' --readme none --theme markdown --out docs --hideGenerator lib",
"clean": "rm -rf dist/"
},
"dependencies": {
"axios": "^1.5.0"
},
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/es6-promise": "^3.3.0",
"@types/jasmine": "^4.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.6.0",
"@types/sinon": "^10.0.0",
"@types/uuid": "^9.0.0",
"dotenv": "^16.3.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"sinon": "^16.0.0",
"ts-node": "^10.9.0",
"tslint": "^6.0.0",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "^3.0.0",
"typescript": "^5.2.0",
"uuid": "^9.0.0"
}
}