This repository has been archived by the owner on Jul 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
{
"name": "web-file-polyfill",
"version": "1.0.0",
"description": "Web API compatible File implementation for node",
"keywords": [
"file",
"blob",
"typed",
"typescript"
],
"type": "module",
"module": "./src/lib.js",
"main": "./dist/src/lib.cjs",
"exports": {
".": {
"import": "./src/lib.js",
"require": "./dist/src/lib.cjs"
}
},
"types": "./src/lib.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"dependencies": {
"web-blob": "2.1.3"
},
"author": "Irakli Gozalishvili <[email protected]> (https://gozala.io)",
"repository": "https://github.com/Gozala/web-file",
"license": "MIT",
"devDependencies": {
"@types/node": "14.0.23",
"@types/tape": "4.13.0",
"blue-tape": "1.0.0",
"git-validate": "2.2.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "2.22.1",
"rollup-plugin-multi-input": "1.1.1",
"tape-es": "git://github.com/gozala/tape-es",
"typescript": "3.9.7"
},
"scripts": {
"check": "tsc --noEmit",
"build": "npm run build:cjs && npm run build:types",
"build:cjs": "rollup --config rollup.config.js",
"build:types": "tsc --project tsconfig.build.json",
"prepare": "npm run build",
"test:es": "tape-es 'test/**/*.spec.js'",
"test:cjs": "rm -rf dist && npm run build && tape dist/test/**/*.spec.cjs",
"test": "npm run test:es && npm run test:cjs",
"precommit": "lint-staged"
},
"pre-push": [
"check",
"test"
],
"lint-staged": {
"*.js": [
"prettier --no-semi --write",
"git add"
]
}
}