generated from bscotch/typescript-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "@bscotch/bravo",
"description": "Bravo: A Favro SDK with full Typescript support and tons of convenience features. By Butterscotch Shenanigans",
"repository": "https://github.com/bscotch/favro-sdk",
"homepage": "https://github.com/bscotch/favro-sdk#readme",
"author": "Adam Coster",
"keywords": [
"favro",
"api",
"toolkit",
"automation",
"sdk",
"project management"
],
"version": "2.3.2",
"engines": {
"node": ">=14"
},
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"files": [
"build/lib/**/*",
"build/index.*",
"build/types/**/*"
],
"scripts": {
"test": "npm run build && mocha --inspect --require source-map-support/register --bail --timeout 6000 --require ./load-env.js ./build/test/",
"build": "rimraf build && tsc && tsc-alias",
"preversion": "npm run lint && npm run build && npm test",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && npm run format && git add -A",
"postversion": "git push --follow-tags && npm publish",
"lint": "eslint --ext ts,js --fix src",
"format": "prettier src/**/*.ts -w",
"build-live": "tsc -w && tsc-alias -w"
},
"license": "MIT",
"dependencies": {
"debug": "^4.3.2",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.7",
"@types/chai": "^4.2.21",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.2",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chai": "^4.3.4",
"conventional-changelog-cli": "^2.1.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"tsc-alias": "^1.3.9",
"typescript": "^4.5.0-dev.20210923"
}
}