-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "@lifeomic/kms-crypt",
"version": "0.2.0",
"description": "Encrypt and decrypt objects with keys from KMS.",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "yarn test",
"build": "rm -rf dist/* && yarn build:types && yarn build:src",
"build:src": "babel src --extensions '.ts' --out-dir dist",
"build:types": "tsc --project tsconfig.json --declaration --emitDeclarationOnly",
"lint": "tslint --project .",
"test": "jest",
"prepublish": "yarn build"
},
"dependencies": {
"aws-sdk": "^2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
}
}