-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "@cubbit/web-file-stream",
"version": "1.0.0",
"private": true,
"description": "Node's file stream APIs for the web",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json -c tslint.json src/**/*.ts",
"pretest": "npm run lint && tsc",
"test": "jest --coverage",
"test:watch": "jest --watch",
"pack": "node -e \"require('./scripts/publish.js').pack()\"",
"publish": "node -e \"require('./scripts/publish.js').publish()\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cubbit/web-file-stream.git"
},
"keywords": [
"web",
"file",
"stream",
"node",
"read",
"write",
"cubbit"
],
"author": "Cubbit <connect@cubbit.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cubbit/web-file-stream/issues"
},
"homepage": "https://github.com/cubbit/web-file-stream#readme",
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.10.5",
"fs-extra": "^7.0.1",
"jest": "^24.3.1",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}