-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "omise",
"version": "0.12.1",
"description": "Omise Node.js bindings",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"jsesc": "jsesc *.js lib/*.js test/*.js",
"test": "mocha test",
"test:coverage": "nyc --reporter=lcov mocha",
"test:watch": "npm test -- --watch",
"format": "prettier-eslint --write",
"format:all": "prettier-eslint --write \"**/*.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/omise/omise-node.git"
},
"author": "Omise <support@omise.co> (https://omise.co/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/omise/omise-node/issues"
},
"homepage": "https://github.com/omise/omise-node",
"dependencies": {
"@types/node": "^8.10.66",
"https-proxy-agent": "^2.2.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/node": "^22.5.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.7",
"dotenv": "^16.4.5",
"eslint": "^5.16.0",
"eslint-config-google": "^0.9.1",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"nyc": "^17.0.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.5.4"
}
}