-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.51 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.51 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "libtiffjs",
"version": "0.1.13",
"license": "BSD",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && webpack -p",
"build:old": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "karma start --single-run --browser ChromeHeadless karma.conf.js",
"test:watch": "karma start --auto-watch --browser ChromeHeadless karma.conf.js",
"test:ci": "webpack --env dev && webpack --env build && karma start --single-run --browser ChromeHeadless karma.conf.js",
"cover": "npm run test && cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ext .ts,.js ./src/** --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"keywords": [
"libtiff",
"tiff",
"tif",
"libtiffjs",
"libtiff.js",
"wasm",
"webassembly"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aviklai/libtiffjs.git"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.1",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/preset-env": "7.10.1",
"@babel/preset-typescript": "7.10.1",
"@types/emscripten": "^1.39.4",
"@types/node": "14.0.14",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-loader": "8.1.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"copy-webpack-plugin": "6.0.2",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"exports-loader": "0.7.0",
"file-loader": "6.0.0",
"husky": "^4.2.5",
"karma": "^4.0.0",
"karma-babel-preprocessor": "8.0.0",
"karma-chai": "0.1.0",
"karma-chai-as-promised": "0.1.2",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.2",
"karma-mocha": "1.3.0",
"lint-staged": "^10.2.11",
"mocha": "6.0.0",
"prettier": "^2.0.5",
"typescript": "3.7.5",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"dependencies": {}
}