-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.14 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
{
"author": {
"name": "Justin",
"email": "justin.mcmahon@pliancy.com"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false
}
},
"dependencies": {
"axios": "1.6.7",
"tslib": "2.6.2"
},
"description": "Wrapper around the Asana node SDK",
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "8.0.1",
"@openapitools/openapi-generator-cli": "2.11.0",
"@pliancy/eslint-config-ts": "1.1.1",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.25",
"commitizen": "4.3.0",
"cpy-cli": "5.0.0",
"husky": "9.0.11",
"jest": "29.7.0",
"npm-run-all2": "5.0.0",
"open-cli": "8.0.0",
"pinst": "3.0.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.2",
"typescript": "5.4.2"
},
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/pliancy/asana-sdk",
"keywords": [],
"license": "MIT",
"main": "index.js",
"name": "@pliancy/asana-sdk",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pliancy/asana-sdk"
},
"scripts": {
"build": "run-s -l clean openapi:generate test tsc copy",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp src/lib/asanaClient",
"copy": "pinst --disable && cpy package.json dist && cpy README.md dist && pinst --enable",
"dev": "run-s -l clean openapi:generate",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"qa": "run-s -l lint clean openapi:generate test build:check",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json",
"openapi:generate": "openapi-generator-cli generate -p apiPackage=api -p modelPackage=types -p withSeparateModelsAndApi=true -p modelPropertyNaming=original -p supportsES6=true -i https://raw.githubusercontent.com/Asana/openapi/master/defs/asana_oas.yaml -g typescript-axios -o \"src/lib/asanaClient\" --skip-validate-spec"
},
"version": "1.1.1",
"volta": {
"node": "20.11.1",
"yarn": "1.22.22"
}
}