-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "@scipe/blob-store",
"version": "1.0.0",
"description": "sci.pe blob store",
"main": "dist/index.js",
"scripts": {
"format": "prettier --single-quote --write \"{src,test}/**/*.js\"",
"test": "mocha --require @babel/register --exit test/test.js",
"build": "rm -rf dist && ./node_modules/.bin/babel src --out-dir dist",
"watch": "babel -w src --out-dir dist",
"prepublish": "npm run build",
"postversion": "git push && git push --tags"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": "@scipe"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/science-periodicals/blob-store.git"
},
"keywords": [
"blob-store",
"blob"
],
"author": "Sebastien Ballesteros",
"license": "See README.md",
"bugs": {
"url": "https://github.com/science-periodicals/blob-store/issues"
},
"homepage": "https://github.com/science-periodicals/blob-store#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@scipe/eslint-config": "^1.0.0",
"mocha": "^6.1.4",
"prettier": "^1.17.0",
"uuid": "^3.3.2"
},
"dependencies": {
"@scipe/create-error": "^1.0.0",
"@scipe/jsonld": "^1.0.0",
"async": "^2.6.2",
"aws-sdk": "^2.449.0",
"concat-stream": "^2.0.0",
"end-of-stream": "^1.4.1",
"is-url": "^1.2.4",
"lru-cache": "^5.1.1",
"mime-types": "^2.1.24",
"mkdirp": "^0.5.1",
"once": "^1.4.0",
"pumpify": "^1.5.1",
"readdirp": "^3.0.1",
"rimraf": "^2.6.3",
"through2": "^3.0.1"
}
}