-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
{
"name": "@fitbit/image-codec-txi",
"version": "1.1.6",
"description": "TXI image format encoder library",
"files": [
"lib",
"mod"
],
"main": "lib/index.js",
"module": "mod/index.js",
"types": "lib/index.d.ts",
"author": "Fitbit, Inc.",
"license": "BSD-3-Clause",
"repository": "github:Fitbit/image-codec-txi",
"bugs": "https://github.com/Fitbit/image-codec-txi/issues",
"homepage": "https://github.com/Fitbit/image-codec-txi#readme",
"scripts": {
"build": "rm -rf lib mod && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json",
"lint": "tslint -c tslint.json -p tsconfig.json --format code-frame",
"checkstyle": "prettier --list-different \"**/*.{js,jsx,ts,tsx,json}\"",
"test": "npm run lint && jest",
"test:coveralls": "npm run lint && jest --coverage --coverageReporters=text-lcov | coveralls",
"prepublishOnly": "npm run test && npm run build",
"benchmark": "ts-node bench.ts"
},
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/pngjs": "^3.4.2",
"benchmark": "^2.1.4",
"coveralls": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"microtime": "^3.0.0",
"pngjs": "^6.0.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}