-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 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
{
"name": "wasm-brotli",
"version": "2.0.2",
"description": "🗜 WebAssembly compiled Brotli library",
"repository": {
"type": "git",
"url": "git+https://github.com/dfrankland/wasm-brotli.git"
},
"keywords": [
"wasm",
"brotli",
"rust",
"compression"
],
"author": "Dylan Frankland",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfrankland/wasm-brotli/issues"
},
"homepage": "https://github.com/dfrankland/wasm-brotli#readme",
"scripts": {
"build:browser": "wasm-pack build --target browser --out-name wasm_brotli_browser --release",
"build:nodejs": "wasm-pack build --target nodejs --out-name wasm_brotli_nodejs --release",
"build": "npm run build:browser && npm run build:nodejs",
"postbuild": "babel-node --extensions='.ts' ./update-package-json.ts",
"pretest": "npm run build",
"test": "jest",
"prebenchmark": "npm run build",
"benchmark": "babel-node --extensions='.ts' ./benchmark.ts",
"lint": "eslint --ext .js --ext .ts .",
"format": "prettier --write \"**/*.js\" \"**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@types/benchmark": "^1.0.31",
"@types/glob": "^7.1.1",
"@types/iltorb": "^2.3.0",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"benchmark": "^2.1.4",
"eslint": "^6.5.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.0.1",
"glob": "^7.1.6",
"iltorb": "^2.4.4",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"typescript": "^3.3.3"
}
}