-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "catbox-fs",
"version": "2.0.0",
"description": "Filesystem adapter for catbox",
"main": "dist/index.js",
"files": [
"dist/",
"typings.json"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json --type-check",
"build": "rimraf dist/ && tsc",
"test-cov": "jest --coverage",
"test": "npm run build && npm run lint && npm run test-cov",
"prepublish": "typings install && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/catbox-fs.git"
},
"keywords": [
"catbox",
"adapter",
"fs",
"filesystem"
],
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blakeembrey/catbox-fs/issues"
},
"homepage": "https://github.com/blakeembrey/catbox-fs",
"devDependencies": {
"catbox": "^7.1.2",
"jest": "^21.0.0",
"rimraf": "^2.5.4",
"tslint": "^5.3.2",
"tslint-config-standard": "^6.0.0",
"typescript": "^2.3.3",
"typings": "^2.0.0"
},
"dependencies": {
"lockfile": "^1.0.2",
"mkdirp": "^0.5.1"
}
}