-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@kyeotic/airtable",
"version": "0.1.0",
"description": "Alternative airtable client",
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"files": [
"dist/"
],
"scripts": {
"size": "size-limit",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"clean": "rimraf dist",
"fix:style": "npm run fix:tslint && npm run fix:prettier",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"style": "prettier --config package.json --write \"{src,test}/**/*.js\"",
"lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
"check": "npm run style && npm run lint",
"doc:html": "rimraf docs && typedoc src/ --exclude **/*.spec.ts --target ES6 --excludePrivate --excludeNotExported --mode file --out docs",
"test": "npm run check && npm run test:coverage",
"test:coverage": "nyc npm run test:unit",
"test:base": "npm run build:main && riteway test/**/*.spec.js",
"test:unit": "npm run test:base | tap-nirvana",
"test:watch": "clear && npm run test:unit -s & chokidar 'src/**/*.ts' 'test/**/*.js' -c \"clear && npm run test:unit -s\"",
"report": "nyc report --reporter=html",
"report:ci": "npm run report",
"report:open": "npm run report && open coverage/index.html"
},
"keywords": [
"airtable"
],
"author": "Tim Kye",
"license": "MIT",
"dependencies": {
"@types/standard-http-error": "^2.0.0",
"fetch-ponyfill": "^6.0.2",
"querystringify": "^2.1.1",
"standard-http-error": "^2.0.1",
"tiny-invariant": "^1.0.4",
"url-join": "^4.0.0"
},
"devDependencies": {
"@kyeotic/tslint-config": "^1.1.0",
"chokidar-cli": "^1.2.2",
"dotenv": "^8.0.0",
"nock": "^10.0.6",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"riteway": "^6.0.3",
"sinon": "^7.3.2",
"size-limit": "^1.3.5",
"tap-nirvana": "^1.1.0",
"tslint": "^5.16.0",
"tslint-config": "0.0.1",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "^3.4.5"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"nyc": {
"all": true,
"check-coverage": true,
"lines": 90,
"include": [
"src/**"
],
"exclude": [
"**/*.spec.js"
]
},
"size-limit": [
{
"path": "dist/main/index.js"
}
]
}