-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "feathers-airtable",
"description": "A wrapper for the feathers API",
"version": "0.0.4",
"homepage": "https://github.com/jonascript/feathers-airtable",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jonascript/feathers-airtable.git"
},
"author": {
"name": "Jonathan Crockett"
},
"contributors": [],
"bugs": {
"url": "https://github.com/jonascript/feathers-airtable/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"babel": "rm -rf lib && mkdir lib && babel src/index.js -o lib/index.js",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/*.js lib/**/*.js test/*.js test/**/*.js --fix",
"test": "jest --coverage"
},
"semistandard": {
"env": [
"node"
]
},
"jest": {
"testEnvironment": "node"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@babel/preset-env": "7.9.5",
"@feathersjs/express": "4.5.3",
"@feathersjs/feathers": "4.5.3",
"airtable": "0.8.1",
"jest": "25.4.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"babel-cli": "6.26.0",
"babel-core": "7.0.0-bridge.0",
"chai": "3.5.0",
"dotenv": "8.2.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "7.1.1",
"semistandard": "14.2.0"
}
}