-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "lowdb-adapter-aws-s3",
"version": "1.1.2",
"description": "Amazon S3 Adapter for LowDB.",
"main": "./lib/main.js",
"scripts": {
"test": "jest && npm run lint",
"lint": "eslint . --ignore-path .gitignore",
"fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build && pkg-ok",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "rimraf lib && babel src --out-dir lib",
"build:dist": "rimraf dist && webpack && webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicekiwi/lowdb-aws-s3-adapter.git"
},
"author": "Ezra Sharp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicekiwi/lowdb-aws-s3-adapter/issues"
},
"homepage": "https://github.com/nicekiwi/lowdb-aws-s3-adapter#readme",
"dependencies": {
"aws-sdk": "^2.167.0"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"babel-cli": "^6.2.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^25.0.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.9.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.9.0",
"delay": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.15.0-beta.15",
"jest": "^25.0.0",
"lodash-id": "^0.14.0",
"mv": "^2.1.1",
"pkg-ok": "^1.0.1",
"prettier": "^1.5.2",
"ramda": "^0.25.0",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.5.4",
"sinon": "^4.0.0",
"tempfile": "^2.0.0",
"webpack": "^3.3.0"
},
"engines": {
"node": ">=4"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"aws-sdk/clients/s3": "<rootDir>/__mocks__/aws-sdk"
}
}
}