forked from orj/appstoreconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "appstoreconnect",
"version": "0.3.0",
"description": "An App Store Connect API client for Node.js",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "ava"
},
"author": "Aaron Sky <aaronsky@skyaaron.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aaronsky/appstoreconnect.git"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/got": "^9.3.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/luxon": "^1.4.1",
"@types/nock": "^9.3.0",
"@types/node": "^10.12.2",
"@types/qs": "^6.5.1",
"@types/sinon": "^7.0.3",
"ava": "^1.0.1",
"husky": "^1.2.1",
"nock": "^10.0.6",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"got": "^9.5.0",
"jsonwebtoken": "^8.3.0",
"luxon": "^1.8.3",
"qs": "^6.6.0"
},
"ava": {
"files": [
"test/**/*.test.ts"
],
"extensions": [
"ts"
],
"sources": [
"**/*.ts",
"!dist/**/*"
],
"compileEnhancements": false,
"require": [
"ts-node/register",
"./test/index.ts"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}