-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "@microsoft/api2teams",
"version": "0.1.2",
"description": "openapi spec to teams app",
"main": "index.js",
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc -p ./ && copyfiles -u 1 -a \"src/resources/**/*\" lib",
"package": "npm run build",
"lint": "eslint . --ext .ts",
"test": "npm run unit-test && npm run e2e-test",
"unit-test": "mocha -r ts-node/register tests/unit/**/*.test.ts",
"e2e-test": "mocha -r ts-node/register tests/e2e/**/*.test.ts",
"prettier": "prettier --write \"src/**/*.ts\""
},
"files": [
"lib/**/*"
],
"bin": {
"api2teams": "./cli.js"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"openapi-types": "^7.2.3",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"prettier": "^2.8.8",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.2",
"@types/prettier": "^2.7.2",
"@types/sinon": "^10.0.14",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.0",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"publishConfig": {
"access": "public"
}
}