-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "@fitbit/portable-pixmap",
"version": "1.0.5",
"description": "Decoder for Portable PixMap images",
"main": "lib/PortablePixmap.js",
"types": "lib/PortablePixmap.d.ts",
"author": "Fitbit, Inc.",
"license": "BSD-3-Clause",
"repository": "github:Fitbit/portable-pixmap",
"bugs": {
"url": "https://github.com/Fitbit/portable-pixmap/issues"
},
"homepage": "https://github.com/Fitbit/portable-pixmap#readme",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"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"
},
"dependencies": {
"error-subclass": "^2.2.0",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"coveralls": "^3.1.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}