-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "etag-hash",
"version": "1.1.3",
"description": "Es6 class that generates ETag using the same algorithm as S3 via MD5 sum.",
"author": "Dan Lynch <pyramation@gmail.com>",
"homepage": "https://github.com/pyramation/etag-hash#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"main",
"module"
],
"scripts": {
"build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start",
"build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start",
"build": "npm run build:module && npm run build:main",
"prepublish": "npm run build",
"lint": "eslint src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pyramation/etag-hash"
},
"keywords": [
"hash",
"crypto",
"s3",
"minio",
"etag",
"md5"
],
"bugs": {
"url": "https://github.com/pyramation/etag-hash/issues"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.1.0",
"cross-env": "^7.0.2",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.5.0",
"jest-in-case": "^1.0.2",
"prettier": "^2.1.2",
"regenerator-runtime": "^0.13.7"
},
"dependencies": {
"@babel/runtime": "^7.11.2"
}
}