-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "airtable-change-detector",
"scripts": {
"lint": "eslint src",
"fix": "eslint --fix src",
"test": "mocha 'src/**/*.test.js'",
"release": "release-it"
},
"main": "index.js",
"dependencies": {
"airtable": "0.8.1",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"auto-changelog": "2.0.0",
"babel-eslint": "10.1.0",
"chai": "4.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-custom-alias": "^1.2.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-no-unsanitized": "^3.1.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.0.1",
"mocha": "7.1.1",
"prettier": "^1.18.2",
"release-it": "13.5.8",
"sinon": "9.0.2"
},
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/crownheightsaid/airtable-change-detector.git"
},
"keywords": [
"airtable",
"webhook",
"polling",
"poll",
"mutualaid"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/crownheightsaid/airtable-change-detector/issues"
},
"homepage": "https://github.com/crownheightsaid/airtable-change-detector#readme",
"description": "",
"release-it": {
"hooks": {
"after:bump": "npx auto-changelog -p"
}
}
}