-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
59 lines (59 loc) · 2.03 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
{
"name": "@azure-tools/rlc-common",
"version": "0.38.2",
"description": "",
"type": "module",
"main": "dist/index.js",
"module": "dist-esm/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist-esm/index.js"
}
},
"types": "./types/index.d.ts",
"scripts": {
"lint": "eslint src --ext .ts --max-warnings=0",
"lint:fix": "eslint src --fix --ext .ts",
"format": "npm run -s prettier -- --write",
"check-format": "npm run prettier -- --check",
"prettier": "prettier --config ./.prettierrc \"src/**/*.ts\"",
"build": "rimraf --glob dist/* dist-esm/* types/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node publishPackage.js",
"build:cjs": "rimraf --glob dist/* dist-esm/* types/* && tsc -p tsconfig-cjs.json && node publishPackage.js",
"build:esm": "rimraf --glob dist/* dist-esm/* types/* && tsc -p tsconfig.json && node publishPackage.js",
"test": "npm run unit-test",
"unit-test": "cross-env TS_NODE_PROJECT=tsconfig.json mocha -r ts-node/register --loader=ts-node/esm --experimental-specifier-resolution=node test/**/*.spec.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ts-morph": "^23.0.0",
"lodash": "^4.17.21",
"handlebars": "^4.7.7"
},
"devDependencies": {
"@types/node": "^18.0.0",
"eslint": "^8.9.0",
"prettier": "^3.1.0",
"typescript": "~5.6.2",
"rimraf": "^5.0.0",
"@types/lodash": "^4.14.182",
"fs-extra": "^10.0.0",
"@types/fs-extra": "^8.1.0",
"ts-node": "^10.7.0",
"mocha": "^10.2.0",
"chai": "^4.3.7",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint-plugin-require-extensions": "0.1.3",
"cross-env": "7.0.3"
},
"bugs": {
"url": "https://github.com/Azure/autorest.typescript/issues"
},
"homepage": "https://github.com/Azure/autorest.typescript/tree/main/packages/rlc-common/"
}