-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "@ascendum/airship-client",
"version": "0.4.0",
"description": "A client library to help with interacting with the Urban Airship API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepack": "npm run clean && npm run build",
"build": "tsc -p tsconfig.build.json",
"clean": "gulp clean",
"lint": "gulp lint",
"test": "jest",
"prettier": "prettier --config .prettierrc --write \"{src,test}/**/*.{ts,js,json,md}\" \"*.{js,json,md}\""
},
"repository": {
"type": "git",
"url": "git@github.com:vora/typescript-urban-airship-client.git"
},
"author": "Matt Donovan",
"contributors": [
{
"name": "Curtis Hatter"
}
],
"license": "ISC",
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"del": "^8.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"gulp": "^5.0.0",
"gulp-eslint-new": "^2.4.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}